cleanup
This commit is contained in:
15
Scripts/EventBus.cs
Normal file
15
Scripts/EventBus.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Godot;
|
||||
|
||||
namespace NodeWar.scripts;
|
||||
|
||||
public partial class EventBus : Node
|
||||
{
|
||||
[Signal]
|
||||
public delegate void GameStartedEventHandler();
|
||||
|
||||
[Signal]
|
||||
public delegate void GameEndedEventHandler(bool win);
|
||||
|
||||
[Signal]
|
||||
public delegate void SelectionChangedEventHandler(string infoText);
|
||||
}
|
||||
Reference in New Issue
Block a user