Add different type of inventory item (armor)

This commit is contained in:
2024-09-03 23:37:49 -07:00
parent 19d3c40fef
commit 9a24ebf058
12 changed files with 59 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
using Godot;
namespace GameJamDungeon
{
public abstract partial class InventoryItem : Node3D
{
public abstract InventoryItemInfo InventoryInfo { get; set; }
}
}