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; } } }