mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
15 lines
271 B
C++
15 lines
271 B
C++
#if defined(Hiro_Sizable)
|
|
|
|
namespace hiro {
|
|
|
|
struct pSizable : pObject {
|
|
Declare(Sizable, Object)
|
|
|
|
virtual auto minimumSize() const -> Size;
|
|
virtual auto setCollapsible(bool collapsible) -> void;
|
|
virtual auto setGeometry(Geometry geometry) -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|