rpcs3/rpcs3/Gui/Debugger.h
DH fb57bb9c4e - Implemented MTCRF instruction.
- Implemented sys_spu_thread_set_argument syscall.
- Improved Debugger.
2013-07-08 16:24:46 +03:00

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