Files
Dawn-Godot/scripts/System/QuestSystem.gd
2025-05-01 19:08:20 -05:00

8 lines
162 B
GDScript

class_name QuestSystem extends Node
static var QUEST_EXAMPLE = preload("res://scripts/Quest/QuestExample.gd").new();
static var ALL_QUESTS = [
QUEST_EXAMPLE
]