diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Server/Events/Game/GameDestroyedEvent.cs')
-rw-r--r-- | Impostor-dev/src/Impostor.Server/Events/Game/GameDestroyedEvent.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Server/Events/Game/GameDestroyedEvent.cs b/Impostor-dev/src/Impostor.Server/Events/Game/GameDestroyedEvent.cs new file mode 100644 index 0000000..5ee1b11 --- /dev/null +++ b/Impostor-dev/src/Impostor.Server/Events/Game/GameDestroyedEvent.cs @@ -0,0 +1,15 @@ +using Impostor.Api.Events; +using Impostor.Api.Games; + +namespace Impostor.Server.Events +{ + public class GameDestroyedEvent : IGameDestroyedEvent + { + public GameDestroyedEvent(IGame game) + { + Game = game; + } + + public IGame Game { get; } + } +} |