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