commit 3be11ab749471a9aa4ef1a2ab7004b7133403881 Author: Juicy Date: Mon May 31 19:26:06 2021 +0200 Added Inventory System diff --git a/data_management/inventory.gd b/data_management/inventory.gd new file mode 100644 index 0000000..1eccaec --- /dev/null +++ b/data_management/inventory.gd @@ -0,0 +1,16 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass