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