using Impostor.Api.Events; using Impostor.Api.Games; using Impostor.Api.Net; namespace Impostor.Server.Events { public class GamePlayerJoinedEvent : IGamePlayerJoinedEvent { public GamePlayerJoinedEvent(IGame game, IClientPlayer player) { Game = game; Player = player; } public IGame Game { get; } public IClientPlayer Player { get; } } }