fix: 변경된 스킬 데이터가 정상적으로 매핑되지 않는 오류 수정

This commit is contained in:
aube.lee
2025-03-17 21:05:22 +09:00
parent 0c593aeefa
commit c1d1fa56b5
6 changed files with 272 additions and 18 deletions

View 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;
}
}
}