mirror of https://github.com/bsnes-emu/bsnes.git
14 lines
164 B
C++
14 lines
164 B
C++
|
#if defined(Hiro_Layout)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pLayout : pSizable {
|
||
|
Declare(Layout, Sizable)
|
||
|
|
||
|
auto setVisible(bool visible) -> void override;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|