mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 05:52:12 +08:00
9a45a3b99b
* move hardware to system/ * fix mypy old-commit-hash: 1139fe507b01f34de9714c99228f411558b44231
22 lines
358 B
C++
22 lines
358 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <QApplication>
|
|
#include <QScreen>
|
|
#include <QWidget>
|
|
|
|
#ifdef QCOM2
|
|
#include <qpa/qplatformnativeinterface.h>
|
|
#include <wayland-client-protocol.h>
|
|
#include <QPlatformSurfaceEvent>
|
|
#endif
|
|
|
|
#include "system/hardware/hw.h"
|
|
|
|
const QString ASSET_PATH = ":/";
|
|
|
|
const int WIDE_WIDTH = 2160;
|
|
|
|
void setMainWindow(QWidget *w);
|