summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Server/Events/Game/GameDestroyedEvent.cs
blob: 5ee1b11bce5b7e5ef23e3b26a4bfed459d5e1000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
    }
}