9 lines
130 B (Stored with Git LFS)
C#
9 lines
130 B (Stored with Git LFS)
C#
namespace DDD
|
|
{
|
|
public interface IStateMachine
|
|
{
|
|
void Enter();
|
|
void Update();
|
|
void Exit();
|
|
}
|
|
} |