Exemplo n.º 1
0
 public Uncompleting(BallViewStateMachine stateMachine) : base(stateMachine)
 {
     new ReturnToIdleTransition(this);
 }
Exemplo n.º 2
0
 public Idle(BallViewStateMachine stateMachine) : base(stateMachine)
 {
     new MoveTransition(this);
     new CompletingTransition(this);
 }
Exemplo n.º 3
0
 public Completed(BallViewStateMachine stateMachine) : base(stateMachine)
 {
     new UnCompletingTransition(this);
 }
Exemplo n.º 4
0
 public StaticState(BallViewStateMachine stateMachine) : base(stateMachine)
 {
 }