aboutsummaryrefslogtreecommitdiffstats
path: root/src/render.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-14 09:56:58 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-14 09:56:58 -0500
commit3da25ab8c6ad1b52b808bfeffc0ad1b32621cfac (patch)
treea034097efd9965e64efcf55ea1d9a2548ee0f927 /src/render.cpp
parentf91e95eed85bdd74b219b20a435fa6f297069da1 (diff)
particle improvements, inventory start
Diffstat (limited to 'src/render.cpp')
-rw-r--r--src/render.cpp12
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();