ProjectDDD/Assets/_DDD/_Scripts/GameUi/New/IInventorySlotUi.cs

8 lines
153 B
C#
Raw Normal View History

2025-07-25 07:58:53 +00:00
namespace DDD
{
public interface IInventorySlotUi
{
void Initialize(ItemViewModel model);
void UpdateCount(int newCount);
}
}