b4438af8cee515b65adc89b6a49463f2001b1ffb
[physics.git] / src / GameStates / CreatingPolygon.h
1 #ifndef CREATINGPOLYGON_H
2 #define CREATINGPOLYGON_H
3
4 #include "GameState.h"
5
6
7 /// ***** Header Class *****
8
9 class CreatingPolygon : public GameState
10 {
11   public:
12     CreatingPolygon();
13     virtual ~CreatingPolygon();
14
15     virtual void handleInput(bool=false) const;
16     virtual void update(float, bool=false) const;
17     virtual void draw(bool=false) const;
18 };
19
20 #endif // CREATINGPOLYGON_H