facsimile-wing/scripts/event_bus.gd

7 lines
299 B
GDScript

extends Node
@warning_ignore_start("unused_signal") # since otherwise Godot will throw a warning that the signal is unused in current scope
signal weapon_changed(weapon_name: String, player_node: Node2D, player_sprite_size: Vector2, origin_offset: float)
@warning_ignore_restore("unused_signal")