Files
Dawn-Godot/scripts/System/QuestSystem.gd
2025-01-15 22:18:44 -06: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
]