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; }
public Window() { this.windowHeight = 1600; this.windowWidth = 900; this.decoration = new Decoration(); this.control = new Control(); ID = windowHeight * windowWidth; }