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