8 lines
153 B
C#
8 lines
153 B
C#
![]() |
namespace DDD
|
||
|
{
|
||
|
public interface IInventorySlotUi
|
||
|
{
|
||
|
void Initialize(ItemViewModel model);
|
||
|
void UpdateCount(int newCount);
|
||
|
}
|
||
|
}
|