19 lines
377 B
C#
19 lines
377 B
C#
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);
|
|
}
|
|
}
|