예제 #1
0
파일: GameClient.cs 프로젝트: fengqk/Art
 public bool SendCommand(Command cmd)
 {
     GameDataSend p = new GameDataSend();
     p.data = EncodeCommand(cmd);
     return SendProtocol(p);
 }
예제 #2
0
파일: GameDataSend.cs 프로젝트: fengqk/Art
		public override Object Clone()
		{
			GameDataSend obj = new GameDataSend();
			obj.data = (Octets)data.Clone();
			return obj;
		}