20 lines
499 B
C#
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();
|
||
|
}
|
||
|
}
|
||
|
}
|