Пример #1
0
 public Window(int w, int h, bool dec, string color)
 {
     this.windowWidth = w;
     this.windowHeight = h;
     this.decoration = new Decoration(dec, color);
     this.control = new Control();
     ID = windowHeight * windowWidth;
 }
Пример #2
0
 public Window()
 {
     this.windowHeight = 1600;
     this.windowWidth = 900;
     this.decoration = new Decoration();
     this.control = new Control();
     ID = windowHeight * windowWidth;
 }