diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Api/Events/Game/IGameStartingEvent.cs')
-rw-r--r-- | Impostor-dev/src/Impostor.Api/Events/Game/IGameStartingEvent.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Api/Events/Game/IGameStartingEvent.cs b/Impostor-dev/src/Impostor.Api/Events/Game/IGameStartingEvent.cs new file mode 100644 index 0000000..5998bf2 --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Events/Game/IGameStartingEvent.cs @@ -0,0 +1,11 @@ +namespace Impostor.Api.Events +{ + /// <summary> + /// Called when the game is going to start. + /// When this is called, not all players are initialized properly yet. + /// If you want to get correct player states, use <see cref="IGameStartedEvent"/>. + /// </summary> + public interface IGameStartingEvent : IGameEvent + { + } +} |