rpcsx/rpcs3/Gui/KernelExplorer.h
Alexandro Sánchez Bach c273c0e42b Minor sys_prx update
2014-08-19 13:19:24 +02:00

15 lines
215 B
C++

#pragma once
#include <wx/treectrl.h>
class KernelExplorer : public wxFrame
{
wxTreeCtrl* m_tree;
public:
KernelExplorer(wxWindow* parent);
void Update();
void OnRefresh(wxCommandEvent& WXUNUSED(event));
};