Ejemplo n.º 1
0
 // This constructor will create new state taking values from old state
 public YellowState(TrafficLightState state)
     : this(state.TrafficLightProperty)
 {
 }
Ejemplo n.º 2
0
 // This constructor will create new state taking values from old state
 public RedState(TrafficLightState state)
     : this(state.TrafficLightProperty)
 {
 }
Ejemplo n.º 3
0
 public TrafficLight()
 {
     currentState = new GreenState(this);
 }