예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="JoinGameEvent"/> class.
 /// </summary>
 /// <param name="client">The client.</param>
 /// <param name="game">The game.</param>
 public JoinGameEvent(LilaClient client, LilaGame game) : base(client)
 {
     Game = game;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LilaGameMoveEvent"/> class.
 /// </summary>
 /// <param name="client">The client.</param>
 /// <param name="game">The game.</param>
 /// <param name="move">The move.</param>
 public LilaGameMoveEvent(LilaClient client, LilaGame game, MoveData move) : base(client, game)
 {
     Move = move;
 }