mirror of https://github.com/bsnes-emu/bsnes.git
9 lines
145 B
C++
9 lines
145 B
C++
|
#if defined(Hiro_Desktop)
|
||
|
struct Desktop {
|
||
|
Desktop() = delete;
|
||
|
|
||
|
static auto size() -> Size;
|
||
|
static auto workspace() -> Geometry;
|
||
|
};
|
||
|
#endif
|