feat: 로비 화면의 사용자 포션 아이템 갯수 매핑 로직 추가

This commit is contained in:
aube.lee
2025-03-01 21:31:29 +09:00
parent ad1a3a1b50
commit 67c017bbbf
7 changed files with 180 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 UserItemData
{
public int hpPotion;
public int mpPotion;
public UserItemData()
{
hpPotion = 0;
mpPotion = 0;
}
}
}