summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/NetPlay/ChangeGameDialog.h
blob: 6e4c24323ce45e77f8763c214f2aeedc1a99593a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <wx/dialog.h>

class CGameListCtrl;
class wxListBox;

class ChangeGameDialog final : public wxDialog
{
public:
	ChangeGameDialog(wxWindow* parent, const CGameListCtrl* const game_list, wxString& game_name);

private:
	void OnPick(wxCommandEvent& event);

	wxListBox* m_game_lbox;
	wxString&  m_game_name;
};