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