ProjectDDD/Assets/_DDD/_Scripts/GameUi/New/IInventorySlotUi.cs
2025-07-25 16:58:53 +09:00

8 lines
153 B
C#

namespace DDD
{
public interface IInventorySlotUi
{
void Initialize(ItemViewModel model);
void UpdateCount(int newCount);
}
}