rpcsx/rpcs3/Gui/Debugger.h

15 lines
211 B
C
Raw Normal View History

#pragma once
#include <wx/listctrl.h>
2013-11-19 11:30:58 +01:00
#include <wx/aui/aui.h>
class DebuggerPanel : public wxPanel
{
wxAuiManager m_aui_mgr;
public:
DebuggerPanel(wxWindow* parent);
~DebuggerPanel();
void UpdateUI();
2013-11-19 11:30:58 +01:00
};