// 更新AI public void UpdateAI() { if (m_AI != null) { m_AI.Update(this); } }
public void UpdateAI(ICharacter targets) { m_AI.Update(targets); }
// 更新AI public void UpdateAI(List <ICharacter> Targets) { m_AI.Update(Targets); }