Exemplo n.º 1
0
 public ReadyCheckEvent(WebsocketEventBase args, ReadyCheck readyCheck) : base(args)
 {
     ReadyCheck = readyCheck;
 }
 public ChampSelectSessionEvent(WebsocketEventBase args, ChampSelectSession session) : base(args)
 {
     Session = session;
 }
Exemplo n.º 3
0
 public RmsStateChangedEvent(WebsocketEventBase args, ERmsState state) : base(args)
 {
     State = state;
 }
Exemplo n.º 4
0
 public EogStatsEvent(WebsocketEventBase args, EogStatsBlock stats) : base(args)
 {
     Stats = stats;
 }
Exemplo n.º 5
0
 public WebsocketEventBase(WebsocketEventBase args)
 {
     Path    = args.Path;
     Type    = args.Type;
     RawData = args.RawData;
 }
Exemplo n.º 6
0
 public NewInvitationsEvent(WebsocketEventBase args, List <ReceivedInvitation> invitations) : base(args)
 {
     Invitations = invitations;
 }