mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
193 B
C++
13 lines
193 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pLabel : public pWidget {
|
||
|
Label &label;
|
||
|
|
||
|
void setText(const string &text);
|
||
|
|
||
|
pLabel(Label &label) : pWidget(label), label(label) {}
|
||
|
void constructor();
|
||
|
};
|
||
|
|
||
|
}
|