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