diff options
author | archshift <gh@archshift.com> | 2015-08-31 21:35:33 -0700 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-10-01 19:39:14 -0700 |
commit | 6e1bb58ee8ace739615e42cff02f07ee396edb6e (patch) | |
tree | 17b5eb9e4319d82e7e0a5683095ad7800941c79c /src/citra_qt/main.h | |
parent | f297a59985a56423da1654cf5bb3448484963ab4 (diff) |
Initial implementation of a game list
Diffstat (limited to 'src/citra_qt/main.h')
-rw-r--r-- | src/citra_qt/main.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h index e99501cab..48a1032bd 100644 --- a/src/citra_qt/main.h +++ b/src/citra_qt/main.h @@ -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; |