mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-11 01:08:30 +12:00
18 lines
No EOL
376 B
C++
18 lines
No EOL
376 B
C++
#pragma once
|
|
|
|
#include "gui/debugger/DumpCtrl.h"
|
|
|
|
class DebuggerWindow2;
|
|
|
|
class DumpWindow : public wxFrame
|
|
{
|
|
public:
|
|
DumpWindow(DebuggerWindow2& parent, const wxPoint& main_position, const wxSize& main_size);
|
|
|
|
void OnMainMove(const wxPoint& position, const wxSize& main_size);
|
|
void OnGameLoaded();
|
|
|
|
private:
|
|
wxScrolledWindow* m_scrolled_window;
|
|
DumpCtrl* m_dump_ctrl;
|
|
}; |