summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Server/Events/Game/GameStartedEvent.cs
blob: d21f9ec1dd553eee492aac993fce6a8a141f4baa (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 GameStartedEvent : IGameStartedEvent
    {
        public GameStartedEvent(IGame game)
        {
            Game = game;
        }

        public IGame Game { get; }
    }
}