예제 #1
0
 public void ShowChooseOneTarget()
 {
     foreach (var kvp in m_entities)
     {
         var c = kvp.Value;
         if (BattleEntityController.IsEnemy(c))
         {
             c.ShowTargetChoose(false);
         }
     }
 }
예제 #2
0
 public static bool IsEnemy(BattleEntityController target)
 {
     return(target.m_posIndex < 3);
 }