7 lines
106 B
C#
7 lines
106 B
C#
namespace KitsuneCafe.ItemSystem
|
|
{
|
|
public interface IStackable
|
|
{
|
|
int MaxStackCount { get; }
|
|
}
|
|
}
|