mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
15 lines
242 B
C++
15 lines
242 B
C++
class DebuggerOptions : public Window {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QVBoxLayout *layout;
|
|
QCheckBox *cacheUsageBox;
|
|
|
|
void synchronize();
|
|
DebuggerOptions();
|
|
|
|
public slots:
|
|
void toggleCacheUsage();
|
|
};
|
|
|
|
extern DebuggerOptions *debuggerOptions;
|