RobotApp/RobotApp/Services/State/RobotState.cs
Đăng Nguyễn d6fe1d9d52 update
2025-09-26 08:48:50 +07:00

8 lines
207 B
C#

namespace RobotApp.Services.State;
public abstract class RobotState<T>(T type) where T : Enum
{
public readonly T Type = type;
public virtual void Enter() { }
public virtual void Exit() { }
}