mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
215 B
C++
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));
|
|
};
|