mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12:00
20 lines
453 B
C++
20 lines
453 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
#include <QWindow>
|
|
#include "Emu/System.h"
|
|
|
|
class main_application
|
|
{
|
|
public:
|
|
virtual void Init(const bool show_gui = false) = 0;
|
|
|
|
static bool InitializeEmulator(const std::string& user, bool force_init);
|
|
|
|
protected:
|
|
virtual QThread* get_thread() = 0;
|
|
|
|
EmuCallbacks CreateCallbacks();
|
|
|
|
QWindow* m_game_window = nullptr; // (Currently) only needed so that pad handlers have a valid target for event filtering.
|
|
};
|