Started quest system

This commit is contained in:
2025-01-06 23:37:49 -06:00
parent e0e6945cab
commit 93c740f1ff
14 changed files with 89 additions and 33 deletions

View File

@@ -1,9 +1,9 @@
class_name TextboxEvent extends "res://scripts/Cutscene/CutsceneEvent.gd"
var text:string;
var text:String;
func _init(
text:string
text:String
) -> void:
super._init();
self.text = text;
@@ -12,4 +12,4 @@ func start() -> void:
print("He can say ", text);
func isDone() -> bool:
return false
return false