mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
313 B
C++
16 lines
313 B
C++
namespace phoenix {
|
|
|
|
struct pButton : public pWidget {
|
|
Button& button;
|
|
|
|
void setBordered(bool bordered);
|
|
void setImage(const image& image, Orientation orientation);
|
|
void setText(string text);
|
|
|
|
pButton(Button& button) : pWidget(button), button(button) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|