This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/gui/interface/Spinner.h
2013-03-22 14:14:17 +00:00

24 lines
320 B
C++

#ifndef SPINNER_H_
#define SPINNER_H_
#include "Component.h"
namespace ui
{
class Spinner: public Component
{
float cValue;
int tickInternal;
public:
Spinner(Point position, Point size);
virtual void Tick(float dt);
virtual void Draw(const Point& screenPos);
virtual ~Spinner();
};
}
#endif /* SPINNER_H_ */