blob: 089b0b53537d53bd9b700ebd5960fe789ee6fee3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Spinner.h
*
* Created on: Feb 11, 2012
* Author: Simon
*/
#ifndef SPINNER_H_
#define SPINNER_H_
#include "Component.h"
namespace ui
{
class Spinner: public Component
{
float cValue;
public:
Spinner(Point position, Point size);
virtual void Tick(float dt);
virtual void Draw(const Point& screenPos);
virtual ~Spinner();
};
}
#endif /* SPINNER_H_ */
|