mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 12:57:45 +00:00
17 lines
363 B
C
17 lines
363 B
C
|
#pragma once
|
||
|
|
||
|
#include <QQmlApplicationEngine>
|
||
|
|
||
|
#include "launchercore.h"
|
||
|
|
||
|
/*
|
||
|
* The tablet-oriented (name to change), touch and gamepad-driven interface for Astra. The interface is
|
||
|
* simpler due to size constraints.
|
||
|
*/
|
||
|
class TabletInterface {
|
||
|
public:
|
||
|
TabletInterface(LauncherCore& core);
|
||
|
|
||
|
private:
|
||
|
QQmlApplicationEngine* applicationEngine = nullptr;
|
||
|
};
|