summaryrefslogtreecommitdiff
path: root/plugins/hello_signals/demo/Main.gd
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hello_signals/demo/Main.gd')
-rw-r--r--plugins/hello_signals/demo/Main.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/hello_signals/demo/Main.gd b/plugins/hello_signals/demo/Main.gd
index 2dca0db..db9499b 100644
--- a/plugins/hello_signals/demo/Main.gd
+++ b/plugins/hello_signals/demo/Main.gd
@@ -5,7 +5,7 @@ var timerRunning = false
var helloSignalsPlugin : HelloSignalsPlugin
func _ready():
- helloSignalsPlugin = preload("res://addons/hello_signals_plugin/interface/hello_signals_plugin.gd").new()
+ helloSignalsPlugin = preload("res://addons/hello_signals_plugin/hello_signals_plugin_interface.gd").new()
helloSignalsPlugin.registerForTikTok(Callable(self, "_on_tiktok"))
$Button.connect("pressed", Callable(self, "_on_Button_pressed"))