Starting Cooking System

This commit is contained in:
2025-01-09 22:00:40 -06:00
parent 9f8e3b34ea
commit 5344fc4aeb
7 changed files with 42 additions and 6 deletions

View File

@@ -5,6 +5,7 @@ const QuestSystem = preload("res://scripts/System/QuestSystem.gd");
const VNSystem = preload("res://scripts/System/VNSystem.gd");
const PauseSystem = preload("res://scripts/System/PauseSystem.gd");
const BattleSystem = preload("res://scripts/System/BattleSystem.gd");
const CookingSystem = preload("res://scripts/System/CookingSystem.gd");
var ITEM:ItemSystem;
var CUTSCENE:CutsceneSystem;
@@ -12,6 +13,7 @@ var QUEST:QuestSystem;
var VN:VNSystem;
var PAUSE:PauseSystem;
var BATTLE:BattleSystem;
var COOKING:CookingSystem;
func _ready():
ITEM = $Item;
@@ -20,6 +22,7 @@ func _ready():
VN = $VN;
PAUSE = $Pause;
BATTLE = $Battle;
COOKING = $Cooking;
func _process(delta):
pass