From 59edd60ebec61bf24dd27063f85bcd049fd0af13 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 19 Jan 2017 16:20:13 -0500 Subject: killed common, more inventory, other random stuff --- include/ui.hpp | 52 +++++++++++++++------------------------------------- 1 file changed, 15 insertions(+), 37 deletions(-) (limited to 'include/ui.hpp') diff --git a/include/ui.hpp b/include/ui.hpp index 67c1010..ac415f5 100644 --- a/include/ui.hpp +++ b/include/ui.hpp @@ -1,49 +1,27 @@ -/* ---------------------------------------------------------------------------- -** The user interface system. -** -** This file contains everything user-interface related. -** --------------------------------------------------------------------------*/ -#ifndef UI_H -#define UI_H +/** + * @file ui.hpp + * @brief the user interface system. + */ +#ifndef UI_HPP_ +#define UI_HPP_ -#define DEBUG -#define SDL_KEY e.key.keysym.sym - -/* ---------------------------------------------------------------------------- -** Includes section -** --------------------------------------------------------------------------*/ - -// standard library headers #include -#include -#include - -// local game headers -#include -#include -//#include -#include -#include +#include -// local library headers +#include +#include #include -#include -#include FT_FREETYPE_H - -#ifndef __WIN32__ -# include -#endif // __WIN32__ +#include +#include +#include -/* ---------------------------------------------------------------------------- -** The UI namespace -** --------------------------------------------------------------------------*/ +#define DEBUG +#define SDL_KEY e.key.keysym.sym void setControl(int index, SDL_Keycode key); SDL_Keycode getControl(int index); -#include - class InputSystem : public entityx::System, public entityx::Receiver { public: inline void configure(entityx::EventManager &ev) { @@ -168,4 +146,4 @@ namespace ui { void takeScreenshot(GLubyte *pixels); } -#endif // UI_H +#endif // UI_HPP_ -- cgit v1.2.3