mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-07 22:13:58 +01:00
13 lines
243 B
C
13 lines
243 B
C
|
|
#pragma once
|
||
|
|
#include "Gui/FrameBase.h"
|
||
|
|
#include <wx/checklst.h>
|
||
|
|
|
||
|
|
class LLEModulesManagerFrame : public FrameBase
|
||
|
|
{
|
||
|
|
wxCheckListBox *m_check_list;
|
||
|
|
|
||
|
|
public:
|
||
|
|
LLEModulesManagerFrame(wxWindow *parent);
|
||
|
|
void Refresh();
|
||
|
|
void UpdateSelection();
|
||
|
|
};
|