feat: 게임 플레이어 로그인 후 재화 데이터 가져오도록 적용
This commit is contained in:
19
Gameton-06/Assets/Gameton/Scripts/GameData/CashData.cs
Normal file
19
Gameton-06/Assets/Gameton/Scripts/GameData/CashData.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user