blob: 70cb0d83406f46ed8f4387277fc88ad7f58a37f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using Impostor.Api.Events.Player;
using Impostor.Api.Games;
using Impostor.Api.Net;
using Impostor.Api.Net.Inner.Objects;
namespace Impostor.Server.Events.Player
{
public class PlayerStartMeetingEvent : IPlayerStartMeetingEvent
{
public PlayerStartMeetingEvent(IGame game, IClientPlayer clientPlayer, IInnerPlayerControl playerControl, IInnerPlayerControl? body)
{
Game = game;
ClientPlayer = clientPlayer;
PlayerControl = playerControl;
Body = body;
}
public IGame Game { get; }
public IClientPlayer ClientPlayer { get; }
public IInnerPlayerControl PlayerControl { get; }
public IInnerPlayerControl? Body { get; }
}
}
|