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