Ejemplo n.º 1
0
 public MsgNetClient(EMsgNetClient type, string json)
 {
     this.type = type;
     this.json = json;
 }
Ejemplo n.º 2
0
 public void Read(NetIncomingMessage inMsg)
 {
     type = (EMsgNetClient)inMsg.ReadUInt16();
     json = GameUtil.ReadString(inMsg);
 }
Ejemplo n.º 3
0
 public MsgNetClient(EMsgNetClient type)
 {
     this.type = type;
 }