|
LPCGame
A 2d game 'engine' written in C++
|
#include <vector>#include <memory>#include "../externals/json/json.h"#include "entity.h"#include "map.h"#include "camera.h"Go to the source code of this file.
Classes | |
| class | EntityManager |
| Handles the Entities in the active state. More... | |
Typedefs | |
| typedef std::vector < std::shared_ptr< Entity > > | EntityList |
| typedef std::vector<std::shared_ptr<Entity> > EntityList |
Typedef for a vector of Entity shared pointers TODO: Should i instead store objects in an unordered map by their name/tag?