OldBlueWater/BlueWater/Assets/02.Scripts/Npc/EngineRunState.cs

20 lines
499 B
C#
Raw Normal View History

2023-12-11 07:00:09 +00:00
namespace BlueWaterProject
{
public class EngineRunState : INpcState
{
public void OnEnter(NpcStateMachine npcStateMachine)
{
throw new System.NotImplementedException();
}
public void OnUpdate(NpcStateMachine npcStateMachine)
{
throw new System.NotImplementedException();
}
public void OnExit(NpcStateMachine npcStateMachine)
{
throw new System.NotImplementedException();
}
}
}