mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
00e03f1436
Doing it from the add dialogs instead would prevent the call to these dialogs outside of a breakpointWindow which would be necessary for hotkeys binding.
21 lines
333 B
C++
21 lines
333 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
class wxTextCtrl;
|
|
|
|
class BreakPointDlg : public wxDialog
|
|
{
|
|
public:
|
|
BreakPointDlg(wxWindow* _Parent);
|
|
|
|
private:
|
|
wxTextCtrl* m_pEditAddress;
|
|
|
|
void OnOK(wxCommandEvent& event);
|
|
};
|