diff options
author | Hop311 <Hop3114@gmail.com> | 2023-12-11 12:08:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-11 12:08:55 +0100 |
commit | 0b3a162d3db840996c3d89e65dfe9270faebffe5 (patch) | |
tree | b22d464dbf8e0e2569b9be5aa130e4def2e51207 /game/src/Game/Autoload | |
parent | a6952efba078e49d6555b0586230986a2cb7ed40 (diff) | |
parent | fd375bdb35d8a7b2ac9cf3dd02cdb0f197451a0b (diff) |
Merge pull request #169 from OpenVicProject/guinode
Big UI commit - GUINode, MaskedFlag, PieChart, etc
Diffstat (limited to 'game/src/Game/Autoload')
-rw-r--r-- | game/src/Game/Autoload/Events.gd | 2 | ||||
-rw-r--r-- | game/src/Game/Autoload/Events/Loader.gd | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/game/src/Game/Autoload/Events.gd b/game/src/Game/Autoload/Events.gd index da12bf6..da29adb 100644 --- a/game/src/Game/Autoload/Events.gd +++ b/game/src/Game/Autoload/Events.gd @@ -3,9 +3,7 @@ ## 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 Loader: LoaderEventsObject var Options: OptionsEventsObject func _init(): - Loader = LoaderEventsObject.new() Options = OptionsEventsObject.new() diff --git a/game/src/Game/Autoload/Events/Loader.gd b/game/src/Game/Autoload/Events/Loader.gd deleted file mode 100644 index c17dc6f..0000000 --- a/game/src/Game/Autoload/Events/Loader.gd +++ /dev/null @@ -1,6 +0,0 @@ -class_name LoaderEventsObject -extends RefCounted - -signal startup_load_begun() -signal startup_load_changed(percentage : float) -signal startup_load_ended() |