mirror of https://github.com/bsnes-emu/bsnes.git
23 lines
290 B
C++
23 lines
290 B
C++
|
#if defined(Hiro_Layout)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
auto pLayout::construct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pLayout::destruct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pLayout::setEnabled(bool enabled) -> void {
|
||
|
}
|
||
|
|
||
|
auto pLayout::setFont(const string& font) -> void {
|
||
|
}
|
||
|
|
||
|
auto pLayout::setVisible(bool visible) -> void {
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|