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