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