mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
319 B
C++
16 lines
319 B
C++
namespace phoenix {
|
|
|
|
struct pCheckButton : public pWidget {
|
|
CheckButton& checkButton;
|
|
|
|
bool checked();
|
|
void setChecked(bool checked);
|
|
void setText(const string& text);
|
|
|
|
pCheckButton(CheckButton& checkButton) : pWidget(checkButton), checkButton(checkButton) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|