예제 #1
0
 public ProtocolDefinition(
     ProtocolKey key,
     string nickname)
 {
     this.Key      = key;
     this.Nickname = nickname;
 }
예제 #2
0
 public ObjectKey(
     ProtocolKey protocolKey,
     ushort msgID,
     ushort version)
 {
     this.ProtocolKey = protocolKey;
     this.MessageID   = msgID;
     this.Version     = version;
 }