Add stackable items
This commit is contained in:
8
Zennysoft.Game.Abstractions/Entity/IStackable.cs
Normal file
8
Zennysoft.Game.Abstractions/Entity/IStackable.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Zennysoft.Game.Abstractions;
|
||||
|
||||
public interface IStackable
|
||||
{
|
||||
int Count { get; }
|
||||
|
||||
void SetCount(int count);
|
||||
}
|
||||
Reference in New Issue
Block a user