OldBlueWater/BlueWater/Assets/02.Scripts/Npc/Guest/PayState.cs

22 lines
535 B
C#
Raw Normal View History

2024-01-15 06:35:58 +00:00
// 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();
}
}
}