OldBlueWater/BlueWater/Assets/02.Scripts/Interface/INpcState.cs

14 lines
327 B
C#
Raw Normal View History

using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public interface INpcState
{
void OnEnter(NpcStateMachine npcStateMachine);
void OnUpdate(NpcStateMachine npcStateMachine);
void OnExit(NpcStateMachine npcStateMachine);
INpcState Clone();
}
}