rpcsx/rpcs3/Gui/Debugger.h

14 lines
210 B
C
Raw Normal View History

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