created input, graphics and game namespaces
[physics.git] / src / game.h
... / ...
CommitLineData
1#ifndef GAME_H
2#define GAME_H
3
4
5/// ***** Header Methods *****
6
7namespace game
8{
9 void init();
10 void clean();
11
12 void input();
13 void update(float);
14 void draw();
15}
16
17#endif // GAME_H