mirror of
https://github.com/Linloir/SceneEditor.git
synced 2025-12-17 15:38:11 +08:00
13 lines
175 B
C++
13 lines
175 B
C++
#pragma once
|
|
|
|
#include "framelesswindow.h"
|
|
|
|
class MainWindow : public FramelessWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
};
|