15 lines
270 B
C#
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;
|
|
}
|