예제 #1
0
파일: Box.cs 프로젝트: Jlejlbka/Thermo-Bend
 public Box(double lenght, double width, double height, RGB rgb)
 {
     this.lenght = lenght;
     this.width = width;
     this.height = height;
     Color = rgb;
 }
예제 #2
0
 public Shaft(double lenght, double width, RGB rgb)
 {
     _lenght = lenght;
     _width = width;
     Color = rgb;
 }