16 lines
291 B
C#
16 lines
291 B
C#
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);
|
|
}
|