mirror of https://github.com/bsnes-emu/bsnes.git
14 lines
207 B
C++
14 lines
207 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pFrame : public pWidget {
|
||
|
Frame& frame;
|
||
|
|
||
|
void setText(string text);
|
||
|
|
||
|
pFrame(Frame& frame) : pWidget(frame), frame(frame) {}
|
||
|
void constructor();
|
||
|
void destructor();
|
||
|
};
|
||
|
|
||
|
}
|