OldBlueWater/BlueWater/Assets/02.Scripts/Npc/EngineRunState.cs
2023-12-11 16:00:09 +09:00

20 lines
499 B
C#

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();
}
}
}