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

8
src/items/armor/Armor.cs Normal file
View File

@@ -0,0 +1,8 @@
using GameJamDungeon;
using Godot;
public partial class Armor : InventoryItem
{
[Export]
public override InventoryItemInfo InventoryInfo { get; set; }
}