mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
214 B
C++
15 lines
214 B
C++
|
#if defined(Hiro_Sizable)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pSizable : pObject {
|
||
|
Declare(Sizable, Object)
|
||
|
|
||
|
virtual auto minimumSize() const -> Size;
|
||
|
virtual auto setGeometry(Geometry geometry) -> void;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|