feat: 로비 화면의 사용자 포션 아이템 갯수 매핑 로직 추가
This commit is contained in:
19
Gameton-06/Assets/Gameton/Scripts/GameData/UserItemData.cs
Normal file
19
Gameton-06/Assets/Gameton/Scripts/GameData/UserItemData.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace TON
|
||||
{
|
||||
[System.Serializable]
|
||||
public class UserItemData
|
||||
{
|
||||
public int hpPotion;
|
||||
public int mpPotion;
|
||||
|
||||
public UserItemData()
|
||||
{
|
||||
hpPotion = 0;
|
||||
mpPotion = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user