mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
14 lines
No EOL
210 B
C++
14 lines
No EOL
210 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();
|
|
}; |