From efcf1a88cd0d0bee3973705b5975827be97f5a3a Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 6 Jan 2017 08:51:53 -0500 Subject: particles, rain --- main.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index 17499f7..2e33a83 100644 --- a/main.cpp +++ b/main.cpp @@ -25,6 +25,7 @@ using namespace tinyxml2; #include #include #include +#include /** * The currently used folder to look for XML files in. @@ -311,6 +312,7 @@ void render() { // draw the world and player game::engine.getSystem()->render(); + game::engine.getSystem()->render(); // draw the player's inventory //player->inv->draw(); @@ -327,9 +329,10 @@ void render() { if (ui::debug) { auto pos = game::engine.getSystem()->getPosition(); ui::putText(offset.x - SCREEN_WIDTH2, (offset.y + SCREEN_HEIGHT2) - ui::fontSize, - "loc: %s\noffset: %s\nfps: %d\nticks: %d\nxml: %s", - pos.toString().c_str(), offset.toString().c_str(), fps, - game::time::getTickCount(), game::engine.getSystem()->getXMLFile().c_str()); + "loc: %s\noffset: %s\nfps: %d\nticks: %d\npcount: %d\nxml: %s", + pos.toString().c_str(), offset.toString().c_str(), fps, + game::time::getTickCount(), game::engine.getSystem()->getCount(), + game::engine.getSystem()->getXMLFile().c_str()); } // draw the menu -- cgit v1.2.3