예제 #1
0
파일: Light.cs 프로젝트: HvaiY/DesignMode
 public void SetYellow()
 {
     this.State = LightState.Yellow;
 }
예제 #2
0
파일: Light.cs 프로젝트: HvaiY/DesignMode
 public void SetRed()
 {
     this.State = LightState.Red;
 }
예제 #3
0
파일: Light.cs 프로젝트: HvaiY/DesignMode
 public void SetGreen()
 {
     this.State = LightState.Green;
 }
예제 #4
0
파일: Light.cs 프로젝트: HvaiY/DesignMode
 public Light(LightState state)
 {
     this.State = state;
 }
예제 #5
0
 public Light()
 {
     lightState = new LightOn();
 }
예제 #6
0
 public AbstratcLight(LightState state)
 {
     this.State = state;
 }