bsnes/hiro/windows/sizable.hpp

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