rpcsx/rpcs3/Gui/Debugger.h
DH 5753edf6ef - Improved sc function binder.
- Improved GLGSRender.
2013-06-30 11:46:29 +03:00

17 lines
307 B
C++

#pragma once
#include <wx/listctrl.h>
#include "wx/aui/aui.h"
class DebuggerPanel : public wxPanel
{
wxAuiManager m_aui_mgr;
wxAuiNotebook* m_nb;
AppConnector m_app_connector;
public:
DebuggerPanel(wxWindow* parent);
~DebuggerPanel();
void UpdateUI();
void HandleCommand(wxCommandEvent& event);
};