Add jewels but no implementation yet (needed redesign of inventory menu to function correctly)
11 lines
166 B
C#
11 lines
166 B
C#
using Chickensoft.Collections;
|
|
|
|
namespace Zennysoft.Game.Implementation;
|
|
|
|
public interface IStackable
|
|
{
|
|
AutoProp<int> Count { get; }
|
|
|
|
void SetCount(int count);
|
|
}
|