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