Files
Dawn-Godot/scripts/System/QuestSystem.gd
2025-01-06 23:37:49 -06:00

8 lines
148 B
GDScript

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