mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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;
|
|
};
|