8 lines
207 B
C#
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() { }
|
|
} |