9 lines
137 B
C#
9 lines
137 B
C#
namespace Zennysoft.Game.Abstractions;
|
|
|
|
public interface IInventoryItem
|
|
{
|
|
string ItemName { get; }
|
|
|
|
string Description { get; }
|
|
}
|