summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Server/Events/Game/GameAlterEvent.cs
blob: 3fb2368290e3fd10dd12f67f4a20294b878e080e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Impostor.Api.Events;
using Impostor.Api.Games;

namespace Impostor.Server.Events
{
    public class GameAlterEvent : IGameAlterEvent
    {
        public GameAlterEvent(IGame game, bool isPublic)
        {
            Game = game;
            IsPublic = isPublic;
        }

        public IGame Game { get; }

        public bool IsPublic { get; }
    }
}