mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
206 B
C++
13 lines
206 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pViewport : public pWidget {
|
||
|
Viewport &viewport;
|
||
|
|
||
|
uintptr_t handle();
|
||
|
|
||
|
pViewport(Viewport &viewport) : pWidget(viewport), viewport(viewport) {}
|
||
|
void constructor();
|
||
|
};
|
||
|
|
||
|
}
|