SkillData 구조 정의

This commit is contained in:
aube.lee
2025-02-04 23:35:07 +09:00
parent 16800bfbc3
commit 2d17524bf9
4 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
[System.Serializable]
public class SkillData
{
public int characterId;
public int id;
public int mp;
public float damage;
public int cooltime;
}
}