rpcsx/rpcs3/Gui/KernelExplorer.h

15 lines
215 B
C
Raw Normal View History

2014-07-26 07:51:45 +02:00
#pragma once
#include <wx/treectrl.h>
class KernelExplorer : public wxFrame
{
wxTreeCtrl* m_tree;
public:
KernelExplorer(wxWindow* parent);
void Update();
void OnRefresh(wxCommandEvent& WXUNUSED(event));
};