Files
GameJamDungeon/Zennysoft.Game.Abstractions/Inventory/IInventoryItem.cs
2025-03-07 18:40:14 -08:00

9 lines
137 B
C#

namespace Zennysoft.Game.Abstractions;
public interface IInventoryItem
{
string ItemName { get; }
string Description { get; }
}