Files
GameJamDungeon/src/items/InventoryItem.cs
2024-09-08 15:42:08 -07:00

15 lines
270 B
C#

using Chickensoft.AutoInject;
using Chickensoft.GodotNodeInterfaces;
namespace GameJamDungeon
{
public interface IInventoryItem : INode3D
{
public IGameRepo GameRepo { get; }
public InventoryItemInfo Info { get; }
}
public interface IEquippable;
}