GraviSim/src/MainWindow.cpp
2020-09-24 19:06:57 +02:00

12 lines
No EOL
209 B
C++

#include "MainWindow.hpp"
#include "Screen.hpp"
MainWindow::MainWindow(QWidget* parent) :
QMainWindow(parent)
{
ui.setupUi(this);
Screen* screen = new Screen(this);
ui.layout->addWidget(screen, 0, 0);
}