Tyro/src/widgets/PrefPane.h

18 lines
219 B
C++

/**
* Preference Panes
*/
#pragma once
#include "src/widgets/widget.h"
class PrefPane {
public:
PrefPane();
~PrefPane();
void Show(wxWindow *parent);
protected:
wxPreferencesEditor *pref_window = nullptr;
};