diff options
author | FearlessTobi <[email protected]> | 2021-12-25 20:27:52 +0100 |
---|---|---|
committer | FearlessTobi <[email protected]> | 2022-07-25 21:59:28 +0200 |
commit | 705f7db84dd85555a6aef1e136cf251725cef293 (patch) | |
tree | e110c6482a11d711d18515afce4fc50adcee76e7 /src/yuzu/game_list.h | |
parent | dcfe0a5febb252e3a4f40c1b25765740a269467f (diff) | |
download | yuzu-android-705f7db84dd85555a6aef1e136cf251725cef293.tar.gz yuzu-android-705f7db84dd85555a6aef1e136cf251725cef293.zip |
yuzu: Add ui files for multiplayer rooms
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r-- | src/yuzu/game_list.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index bc36d015a..9605985cc 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h @@ -16,9 +16,14 @@ #include <QWidget> #include "common/common_types.h" +#include "core/core.h" #include "uisettings.h" #include "yuzu/compatibility_list.h" +namespace Core { +class System; +} + class ControllerNavigation; class GameListWorker; class GameListSearchField; @@ -84,6 +89,8 @@ public: void SaveInterfaceLayout(); void LoadInterfaceLayout(); + QStandardItemModel* GetModel() const; + /// Disables events from the emulated controller void UnloadController(); @@ -108,6 +115,7 @@ signals: void OpenDirectory(const QString& directory); void AddDirectory(); void ShowList(bool show); + void PopulatingCompleted(); private slots: void OnItemExpanded(const QModelIndex& item); |