mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 10:36:30 +03:00
20 lines
343 B
C++
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
|