11 lines
158 B
C++
11 lines
158 B
C++
//
|
|
// Created by selim on 03.01.2022.
|
|
//
|
|
|
|
#include "MainWindow.h"
|
|
|
|
MainWindow::MainWindow() {
|
|
set_title("Main window");
|
|
set_default_size(640, 480);
|
|
}
|