aboutsummaryrefslogtreecommitdiffstats
path: root/editor/editorwindow.cpp
blob: aad8461278732eb030bab37746fb00dd28491aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ----------------------------------------------------------------------------
 * /home/yannherklotz/Github/YAGE/editor/editorwindow.cpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#include "editorwindow.h"
#include "ui_editorwindow.h"

EditorWindow::EditorWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::EditorWindow)
{
    ui->setupUi(this);
}

EditorWindow::~EditorWindow()
{
    delete ui;
}

void EditorWindow::on_openGLWidget_destroyed()
{
}