Doing some more quest stuff

This commit is contained in:
2025-05-19 07:24:46 -05:00
parent f625415939
commit 0c5675e1b4
8 changed files with 56 additions and 19 deletions

View File

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