aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/Autoload/Events.gd
blob: 4f38f61655f84e26a43a8c46d6e3da6056de7e03 (plain) (blame)
1
2
3
4
5
6
7
8
9
## Events are exclusively for the purpose of handling global signals
## This is to reduce "signal bubbling" which is when a signal callback is used to "bubble" the signal callbacks up the scene tree.
## It does such by providing a global interface of signals that are connected to and emitted by that are garunteed to exist.
extends Node

var Options: OptionsEventsObject

func _init() -> void:
   Options = OptionsEventsObject.new()