blob: d295103a6acb65fdfe1be817cc7aa0ec2b0b6269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using Impostor.Api.Events;
using Impostor.Api.Games;
using Impostor.Api.Net;
namespace Impostor.Server.Events
{
public class GamePlayerLeftEvent : IGamePlayerLeftEvent
{
public GamePlayerLeftEvent(IGame game, IClientPlayer player, bool isBan)
{
Game = game;
Player = player;
IsBan = isBan;
}
public IGame Game { get; }
public IClientPlayer Player { get; }
public bool IsBan { get; }
}
}
|