mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-04 13:47:51 -05:00
network: Move global state into a seperate class
Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com>
This commit is contained in:
@ -14,7 +14,7 @@ class ClientRoomWindow : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ClientRoomWindow(QWidget* parent);
|
||||
explicit ClientRoomWindow(QWidget* parent, Network::RoomNetwork& room_network_);
|
||||
~ClientRoomWindow();
|
||||
|
||||
void RetranslateUi();
|
||||
@ -36,4 +36,5 @@ private:
|
||||
|
||||
QStandardItemModel* player_list;
|
||||
std::unique_ptr<Ui::ClientRoom> ui;
|
||||
Network::RoomNetwork& room_network;
|
||||
};
|
||||
|
Reference in New Issue
Block a user