mirror of https://github.com/bsnes-emu/bsnes.git
23 lines
404 B
C++
23 lines
404 B
C++
struct CheatDatabase : Window {
|
|
VerticalLayout layout;
|
|
ListView cheatList;
|
|
HorizontalLayout controlLayout;
|
|
Button selectAllButton;
|
|
Button unselectAllButton;
|
|
Widget spacer;
|
|
Button acceptButton;
|
|
|
|
void findCodes();
|
|
void addCodes();
|
|
CheatDatabase();
|
|
|
|
private:
|
|
struct Cheat {
|
|
string code;
|
|
string desc;
|
|
};
|
|
vector<Cheat> cheat;
|
|
};
|
|
|
|
extern CheatDatabase* cheatDatabase;
|