using System.Collections; using UnityEngine; // ReSharper disable once CheckNamespace namespace BlueWaterProject { public interface IAiMover : IAiBase { // Properties bool IsCommanded { get; set; } // Functions void CommandMove(Vector3 targetPos); IEnumerator CommandMoveCoroutine(Vector3 targetPos); } }