idk
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
extends Node
|
||||
const Inventory = preload("res://scripts/Item/Inventory.gd")
|
||||
|
||||
# Item Constants
|
||||
static var POTION = preload("res://scripts/Item/Potion.gd").new();
|
||||
static var ONION = preload("res://scripts/Item/Ingredient/Onion.gd").new();
|
||||
# # Item Constants
|
||||
# static var POTION = preload("res://scripts/Item/Potion.gd").new();
|
||||
# static var ONION = preload("res://scripts/Item/Ingredient/Onion.gd").new();
|
||||
|
||||
enum ItemType {
|
||||
POTION,
|
||||
ONION
|
||||
};
|
||||
|
||||
# Static inventories
|
||||
static var PLAYER_INVENTORY = Inventory.new();
|
||||
|
Reference in New Issue
Block a user