Added debug inventory menu

This commit is contained in:
2025-05-19 17:41:39 -05:00
parent 3b9986b4ee
commit 057ed10851
26 changed files with 309 additions and 24 deletions

View File

@@ -1,8 +1,8 @@
class_name ItemStack
var item:Item.Type;
var type:Item.Type;
var quantity:int;
func _init(item:Item.Type, quantity:int = 1):
self.item = item;
func _init(type:Item.Type, quantity:int = 1):
self.type = type;
self.quantity = quantity;