1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 04:37:46 +00:00
astra/launcher/tablet/include/tabletinterface.h

17 lines
372 B
C
Raw Normal View History

#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:
2022-10-13 13:20:09 -04:00
explicit TabletInterface(LauncherCore& core);
private:
QQmlApplicationEngine* applicationEngine = nullptr;
};