mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
163 B
C++
12 lines
163 B
C++
|
#if defined(Hiro_Viewport)
|
||
|
struct mViewport : mWidget {
|
||
|
Declare(Viewport)
|
||
|
|
||
|
auto handle() const -> uintptr_t;
|
||
|
|
||
|
//private:
|
||
|
struct State {
|
||
|
} state;
|
||
|
};
|
||
|
#endif
|