Files
GameJamDungeon/Zennysoft.Game.Abstractions/Entity/IStackable.cs
2025-03-11 16:00:46 -07:00

9 lines
122 B
C#

namespace Zennysoft.Game.Abstractions;
public interface IStackable
{
int Count { get; }
void SetCount(int count);
}