Started cutscene system

This commit is contained in:
2025-01-05 15:30:00 -06:00
parent e74878eb80
commit 0554f5719d
11 changed files with 135 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
class_name ItemSystem
class_name ItemSystem extends Node
const Item = preload("res://scripts/Items/Item.gd");
const ItemStack = preload("res://scripts/Items/ItemStack.gd");
@@ -17,7 +17,7 @@ class ItemStackTypeComparator:
# Constants
const ITEM_STACK_SIZE_MAX = 99;
var ITEM_POTION = preload("res://scripts/Items/Potion.gd").new()
var ITEM_POTION = preload("res://scripts/Items/Potion.gd").new();
var inventory:Array[ItemStack] = [];
# Methods