Files
Dawn-Godot/scripts/Singleton/Item.gd
2025-05-07 11:16:08 -05:00

9 lines
228 B
GDScript

extends Node
const Inventory = preload("res://scripts/Item/Inventory.gd")
# Item Constants
static var POTION = preload("res://scripts/Item/Potion.gd").new();
# Static inventories
static var PLAYER_INVENTORY = Inventory.new();