diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-22 18:40:40 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-22 18:40:40 -0400 |
commit | 149f255760e56447400d80532c99d481bc93644a (patch) | |
tree | cad461be88b7260ec1beb532c33c9757c534979b /include/world.hpp | |
parent | 17b4275fae1f6c5642156c73784622772d235c42 (diff) |
working linking, left/right
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/world.hpp b/include/world.hpp index 36ccdfa..1f54292 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -9,10 +9,10 @@ // local game includes #include <common.hpp> #include <coolarray.hpp> - #include <events.hpp> #include <texture.hpp> #include <tinyxml2.h> +#include <components.hpp> using namespace tinyxml2; /** @@ -65,11 +65,6 @@ extern std::string currentXML; constexpr const unsigned int DAY_CYCLE = 10000; /** - * Defines the velocity of player when moved by the keyboard - */ -constexpr const float PLAYER_SPEED_CONSTANT = 0.15f; - -/** * Defines the strongest pull gravity can have on an entity. * This is the most that can be subtracted from an entity's velocity in one * game tick. @@ -165,8 +160,8 @@ public: void detect(entityx::TimeDelta dt); - void goWorldLeft(void) {} - void goWorldRight(void) {} + void goWorldLeft(Position& p); + void goWorldRight(Position& p); // worlddata2 stuff WorldData2 worldData; |