mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-24 02:17:27 -04:00
13 lines
194 B
GDScript
13 lines
194 B
GDScript
extends Node
|
|
class_name AnalyticsSender
|
|
|
|
var analytics: Analytics
|
|
|
|
|
|
func _enter_tree() -> void:
|
|
analytics = get_parent()
|
|
analytics.analytics_ready.connect(start)
|
|
|
|
|
|
func start() -> void:
|
|
pass
|