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