13 lines
300 B
C#
13 lines
300 B
C#
using UnityEngine;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BlueWaterProject
|
|
{
|
|
public interface INpcState
|
|
{
|
|
void OnEnter(NpcStateMachine npcStateMachine);
|
|
void OnUpdate(NpcStateMachine npcStateMachine);
|
|
void OnExit(NpcStateMachine npcStateMachine);
|
|
}
|
|
}
|