using UnityEngine; namespace BaseGames.AI { /// 移动能力接口(第 3 阶段由 MoverAdapter 适配移动系统)。 public interface IMover { void MoveTo(Vector2 target); void FacePlayer(); void Stop(); void WalkRandom(); void LookAround(); } }