Exemplo n.º 1
0
 // 更新AI
 public void UpdateAI()
 {
     if (m_AI != null)
     {
         m_AI.Update(this);
     }
 }
Exemplo n.º 2
0
 public void UpdateAI(ICharacter targets)
 {
     m_AI.Update(targets);
 }
Exemplo n.º 3
0
 // 更新AI
 public void UpdateAI(List <ICharacter> Targets)
 {
     m_AI.Update(Targets);
 }