mirror of
https://github.com/overte-org/overte.git
synced 2025-07-25 14:47:24 +02:00
16 lines
325 B
C++
16 lines
325 B
C++
#pragma once
|
|
#include <memory>
|
|
|
|
#include <QGuiApplication>
|
|
|
|
class LauncherWindow;
|
|
class LauncherState;
|
|
class Launcher : public QGuiApplication {
|
|
public:
|
|
Launcher(int& argc, char** argv);
|
|
~Launcher();
|
|
|
|
private:
|
|
std::unique_ptr<LauncherWindow> _launcherWindow;
|
|
std::shared_ptr<LauncherState> _launcherState;
|
|
};
|