Exemplo n.º 1
0
 public Flashlight()
 {
     _currentState = new Off();
 }
Exemplo n.º 2
0
 public void setState(GOF_SimpleFlashlight s)
 {
     _currentState.OnExit(this);
     _currentState = s;
     _currentState.OnEnter(this);
 }