massive cleaning of file section headers
[physics.git] / src / entityManager.h
CommitLineData
ad9f1fb6
PG
1#ifndef ENTITYMANAGER_H
2#define ENTITYMANAGER_H
3
4#include "Entities/Entity.h"
5
6/// ***** Header Methods *****
d388f0ec 7namespace manager
ad9f1fb6
PG
8{
9 void init();
10 void clean();
11
12 // does not new or delete Entities
13 void add(Entity*);
14 void remove(Entity*);
ad9f1fb6
PG
15
16 void update(float);
17 void draw();
18 void handleInput();
19}
20#endif // ENTITYMANAGER_H