using Chickensoft.Collections; namespace Zennysoft.Game.Implementation; public interface IStackable { AutoProp Count { get; } void SetCount(int count); }