ProjectDDD/Assets/_DDD/_Scripts/Characters/Players/RestaurantPlayer/IStateMachine.cs
2025-07-07 19:25:56 +09:00

9 lines
130 B (Stored with Git LFS)
C#

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