mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
15 lines
277 B
C++
15 lines
277 B
C++
#if defined(Hiro_HorizontalSlider)
|
|
|
|
namespace hiro {
|
|
|
|
struct pHorizontalSlider : pWidget {
|
|
Declare(HorizontalSlider, Widget)
|
|
|
|
auto minimumSize() const -> Size override;
|
|
auto setLength(unsigned length) -> void;
|
|
auto setPosition(unsigned position) -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|