diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-16 13:33:26 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-16 13:33:26 -0400 |
commit | dad2425e2c686f188c2d8e9e58ac62d87d073bde (patch) | |
tree | 4f4ba4d8768afa662bd855a920fe20d9579681b9 /include/world.hpp | |
parent | 326cd4e5fdc396c5c34ac9371b53d2838ea9ee4d (diff) |
prototyped new detect
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/include/world.hpp b/include/world.hpp index a99affa..a574401 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -175,6 +175,11 @@ public: { return weather; } void setWeather(const std::string &s); + + void singleDetect(Entity *e, entityx::TimeDelta dt); + void detect(entityx::TimeDelta dt); + + void detect2(entityx::TimeDelta dt); }; @@ -254,11 +259,6 @@ public: std::vector<Entity *> entityPending; /** - * Handles death, gravity, etc. for a single entity - */ - virtual void singleDetect(Entity *e); - - /** * Destroys entities and clears vectors that contain them. * This function is only called in the world destructor. */ @@ -307,18 +307,6 @@ public: virtual void draw(Player *p); /** - * Handles physics for all entities and the player. - * - * @see singleDetect() - */ - void detect(Player *p); - - /** - * Updates entity positions, time of day, and music. - */ - void update(Player *p, unsigned int delta); - - /** * Gets the width of the world, presumably in pixels. * TODO */ |