Added global event bus

This commit is contained in:
Henry 2026-05-09 17:13:25 +01:00
parent e98ba4ef27
commit eb6f24a389
4 changed files with 15 additions and 0 deletions

6
scripts/event_bus.gd Normal file
View file

@ -0,0 +1,6 @@
extends Node
@warning_ignore_start("unused_signal") # since otherwise Godot will throw a warning that the signal is unused in current scope
@warning_ignore_restore("unused_signal") # put any future signals you add between the two ignore annotations