Added Launch Demo button.

Signed-off-by: jopejoe1 <johannes@joens.email>
This commit is contained in:
jopejoe1
2022-07-11 20:46:11 +02:00
committed by flow
parent 1ca2be0039
commit 29dcb9d274
9 changed files with 90 additions and 9 deletions

View File

@ -63,6 +63,10 @@ public:
m_online = online;
}
void setDemo(bool demo) {
m_demo = demo;
}
void setProfiler(BaseProfilerFactory *profiler) {
m_profiler = profiler;
}
@ -101,6 +105,7 @@ private slots:
private:
BaseProfilerFactory *m_profiler = nullptr;
bool m_online = true;
bool m_demo = false;
InstancePtr m_instance;
QWidget * m_parentWidget = nullptr;
InstanceWindow *m_console = nullptr;