docs: 게임데이터 메타 클래스 주석 추가

This commit is contained in:
aube.lee
2025-02-13 10:40:36 +09:00
parent b3ba592a12
commit cc68940d01
2 changed files with 9 additions and 0 deletions

View File

@@ -7,12 +7,19 @@ namespace TON
[System.Serializable]
public class SkillData
{
// 스킬 아이디
public string id;
// 스킬 이름
public string name;
// 스킬 mp 소모량
public int mpConsumption;
// 스킬 데미지
public float damage;
// 스킬 쿨타임
public int coolDown;
// 스킬 장착 슬롯 번호
public int slotNumber;
// 스킬 사용을 위해 필요한 캐릭터 레벨
public int requiredLevel;
}
}