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,5 +1,10 @@
class_name ItemOnGround extends StaticBody3D
enum Type {
SPAWNS_WITH_MAP,
AQUIRED_ONCE
}
@export var itemType:Item.Type = Item.Type.POTION;
@export var quantity:int = 1;