fix: 변경된 스킬 데이터가 정상적으로 매핑되지 않는 오류 수정
This commit is contained in:
22
Gameton-06/Assets/Gameton/Scripts/GameData/UserSkillData.cs
Normal file
22
Gameton-06/Assets/Gameton/Scripts/GameData/UserSkillData.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace TON
|
||||
{
|
||||
[System.Serializable]
|
||||
public class UserSkillData
|
||||
{
|
||||
|
||||
public string slot_1;
|
||||
public string slot_2;
|
||||
public string slot_3;
|
||||
|
||||
public UserSkillData()
|
||||
{
|
||||
slot_1 = "K0001";
|
||||
slot_2 = string.Empty;
|
||||
slot_3 = string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user