OldBlueWater/BlueWater/Assets/02.Scripts/Npc/Guest/PayState.cs
2024-01-15 15:35:58 +09:00

22 lines
535 B
C#

// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public class PayState : 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();
}
}
}