Exemplo n.º 1
0
 public TrafficLight(LightState state)
 {
     _state = state;
 }
Exemplo n.º 2
0
 public void ChangeState(LightState state)
 {
     _state = state;
 }
Exemplo n.º 3
0
 public void SetState(LightState light)
 {
     currentState = light;
 }