diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-14 09:56:58 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-14 09:56:58 -0500 |
commit | 3da25ab8c6ad1b52b808bfeffc0ad1b32621cfac (patch) | |
tree | a034097efd9965e64efcf55ea1d9a2548ee0f927 /src/render.cpp | |
parent | f91e95eed85bdd74b219b20a435fa6f297069da1 (diff) |
particle improvements, inventory start
Diffstat (limited to 'src/render.cpp')
-rw-r--r-- | src/render.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/render.cpp b/src/render.cpp index 4e32311..a63d63a 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -99,14 +99,16 @@ void render(const int& fps) } // namespace render -#include <ui.hpp> -#include <window.hpp> -#include <world.hpp> #include <engine.hpp> +#include <gametime.hpp> +#include <inventory.hpp> #include <particle.hpp> #include <player.hpp> +#include <ui.hpp> +#include <window.hpp> +#include <world.hpp> + #include <entityx/entityx.h> -#include <gametime.hpp> void preRender(void) { @@ -172,6 +174,8 @@ void render(const int& fps) game::engine.getSystem<RenderSystem>()->render(); + game::engine.getSystem<InventorySystem>()->render(); + // draw the debug overlay if desired if (ui::debug) { auto pos = game::engine.getSystem<PlayerSystem>()->getPosition(); |