diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-07-02 09:58:12 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-07-02 09:58:12 -0400 |
commit | 6f13e748c526576198d197ad194f4c1d8fdadec0 (patch) | |
tree | e3f0d95544eb7e2e5125e739b2c73574d2e47fe0 /src/ui.cpp | |
parent | 40e0c5d15ee6cd24bdc305e40ae6895aca18e669 (diff) |
new xml, wip quest menu
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,6 @@ #include <ui.hpp> +#include <ui_quest.hpp> #include <brice.hpp> #include <world.hpp> #include <gametime.hpp> @@ -909,6 +910,9 @@ namespace ui { // will return if not toggled action::draw(vec2 {player->loc.x + player->width / 2, player->loc.y + player->height + game::HLINE}); + // will return if not toggled + quest::draw(); + if (pageTexReady) { GLfloat page_loc[] = {offset.x - 300, SCREEN_HEIGHT - 100, -6.0, @@ -1540,6 +1544,8 @@ EXIT: currentWorld->addObject(item->name, "o shit waddup", player->loc.x + player->width / 2, player->loc.y + player->height / 2); } + } else if (SDL_KEY == SDLK_h) { + quest::toggle(); } else switch (SDL_KEY) { case SDLK_F3: debug ^= true; |