mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 12:47:44 +00:00
17 lines
No EOL
363 B
C++
17 lines
No EOL
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;
|
|
}; |