// 執行兵營命令
 void Update_Camp()
 {
     if (theSoldierCamp != null)
     {
         theSoldierCamp.RunCommand();
     }
     if (theCaptiveCamp != null)
     {
         theCaptiveCamp.RunCommand();
     }
 }