mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
17 lines
226 B
C++
17 lines
226 B
C++
#ifndef APPS_CURVE_VIEW_CURSOR_H
|
|
#define APPS_CURVE_VIEW_CURSOR_H
|
|
|
|
|
|
class CurveViewCursor {
|
|
public:
|
|
CurveViewCursor();
|
|
float x();
|
|
float y();
|
|
void moveTo(float x, float y);
|
|
private:
|
|
float m_x;
|
|
float m_y;
|
|
};
|
|
|
|
#endif
|