9 lines
76 B
C#
9 lines
76 B
C#
public interface IState
|
|
{
|
|
void Enter();
|
|
|
|
void Execute();
|
|
|
|
void Exit();
|
|
}
|