rpcs3/rpcs3/Gui/Debugger.h
2013-11-23 23:27:58 +01:00

14 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();
};