1#ifndef OE_GUI_COMPONENT_SLIDER_H
2#define OE_GUI_COMPONENT_SLIDER_H
4#include "../component.h"
12 Slider(
float value,
const float& min = .0,
const float& max = 100.,
const float& step = 1., std::function<
void()>
on_change = []{});
14 void bindValueToPointer(
float* value);
24 std::function<
void()> _on_change;
Definition component.h:22
T * createChild(Args &&... args)
Definition component.h:64
UI components.
Definition component.h:15