mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
301 B
C++
16 lines
301 B
C++
namespace phoenix {
|
|
|
|
struct pCheckItem : public pAction {
|
|
CheckItem &checkItem;
|
|
|
|
bool checked();
|
|
void setChecked(bool checked);
|
|
void setText(const string &text);
|
|
|
|
pCheckItem(CheckItem &checkItem) : pAction(checkItem), checkItem(checkItem) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|