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;
|
||||
}
|
||||
}
|
||||
}
|
||||
11
Gameton-06/Assets/Gameton/Scripts/GameData/CashData.cs.meta
Normal file
11
Gameton-06/Assets/Gameton/Scripts/GameData/CashData.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c5faca4862c71c94ab30d84b1ec35872
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user