mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 22:52:34 +01:00
17 lines
223 B
C++
17 lines
223 B
C++
|
namespace hiro {
|
||
|
|
||
|
auto pSizable::construct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pSizable::destruct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pSizable::minimumSize() const -> Size {
|
||
|
return {0, 0};
|
||
|
}
|
||
|
|
||
|
auto pSizable::setGeometry(Geometry geometry) -> void {
|
||
|
}
|
||
|
|
||
|
}
|