9 lines
122 B
C#
9 lines
122 B
C#
namespace Zennysoft.Game.Abstractions;
|
|
|
|
public interface IStackable
|
|
{
|
|
int Count { get; }
|
|
|
|
void SetCount(int count);
|
|
}
|