コード例 #1
0
 static public void SendCommandToMasterServer(string[] command)
 {
     MasterServerInterface.SendMsg(Serialization.Serialize(command));
 }
コード例 #2
0
 static public void SendCommandToGameServer(string[] command)
 {
     GameServerInterface.SendMsg(Serialization.Serialize(command));
     _LastCommand = command;
 }