mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
211 B
C++
15 lines
211 B
C++
#pragma once
|
|
#include <wx/listctrl.h>
|
|
#include <wx/aui/aui.h>
|
|
|
|
class DebuggerPanel : public wxPanel
|
|
{
|
|
wxAuiManager m_aui_mgr;
|
|
|
|
public:
|
|
DebuggerPanel(wxWindow* parent);
|
|
~DebuggerPanel();
|
|
|
|
void UpdateUI();
|
|
};
|