ProjectDDD/Assets/_DDD/_Scripts/RestaurantCharacter/Players/RestaurantPlayer/IStateMachine.cs
2025-07-09 18:45:11 +09:00

9 lines
130 B
C#

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