feat: 게임 플레이어 로그인 후 재화 데이터 가져오도록 적용

This commit is contained in:
aube.lee
2025-02-27 22:40:53 +09:00
parent ae4b555dd5
commit fca3a699c6
8 changed files with 213 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
[System.Serializable]
public class CashData
{
public int gold;
public int fish;
public CashData()
{
gold = 0;
fish = 0;
}
}
}