ProjectDDD/Assets/_DDD/_Scripts/Characters/Players/RestaurantPlayer/IStateMachine.cs

9 lines
130 B
C#
Raw Normal View History

namespace DDD
{
public interface IStateMachine
{
void Enter();
void Update();
void Exit();
}
}