canto/Assets/Scripts/Item/IStackable.cs
2025-08-14 19:11:32 -04:00

7 lines
106 B
C#

namespace KitsuneCafe.ItemSystem
{
public interface IStackable
{
int MaxStackCount { get; }
}
}