Files
eepp/src/ui/cuisliderbutton.hpp
spartanj 7fa61de408 Added cUISlider ( horizontal and vertical ).
Fixed some critical bugs on the UI.
2010-10-11 03:34:05 -03:00

20 lines
343 B
C++

#ifndef EE_UICUISLIDERBUTTON_HPP
#define EE_UICUISLIDERBUTTON_HPP
#include "cuidragable.hpp"
namespace EE { namespace UI { namespace Private {
class cUISliderButton : public cUIDragable {
public:
cUISliderButton( const cUIDragable::CreateParams& Params );
~cUISliderButton();
protected:
virtual void OnPosChange();
};
}}}
#endif