mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-03 08:47:52 -05:00
Initial implementation of a game list
This commit is contained in:
@ -10,6 +10,7 @@
|
||||
|
||||
#include "ui_main.h"
|
||||
|
||||
class GameList;
|
||||
class GImageInfo;
|
||||
class GRenderWindow;
|
||||
class EmuThread;
|
||||
@ -87,6 +88,8 @@ private slots:
|
||||
void OnStartGame();
|
||||
void OnPauseGame();
|
||||
void OnStopGame();
|
||||
/// Called whenever a user selects a game in the game list widget.
|
||||
void OnGameListLoadFile(QString game_path);
|
||||
void OnMenuLoadFile();
|
||||
void OnMenuLoadSymbolMap();
|
||||
void OnMenuRecentFile();
|
||||
@ -101,6 +104,7 @@ private:
|
||||
Ui::MainWindow ui;
|
||||
|
||||
GRenderWindow* render_window;
|
||||
GameList* game_list;
|
||||
|
||||
// Whether emulation is currently running in Citra.
|
||||
bool emulation_running = false;
|
||||
|
Reference in New Issue
Block a user