public NMConnect(byte received, NetIndex4 s, string v, string mH)
 {
     this.version          = v;
     this.connectsReceived = (NetIndex4)(int)received;
     this.remoteSession    = s;
     this.modHash          = mH;
 }
示例#2
0
 public NMHeartbeat(NetIndex4 s) => this.remoteSession = s;
 public NMLegacyConnect(byte received, NetIndex4 s)
 {
     this.connectsReceived = received;
     this.remoteSession    = s;
 }