Files
eepp/include/eepp/ui/base.hpp
spartanj@gmail.com 810272e101 Fixed Doxyfile.
Changed in String class: toStr to ToStr and fromString to FromString ( since everthing else starts with uppercase characters ).
Added BitOp static class, just some helpers for bit operations.
2012-12-02 23:34:32 -03:00

32 lines
793 B
C++

#ifndef EE_UI_BASE
#define EE_UI_BASE
#include <eepp/base.hpp>
#include <eepp/math/helper.hpp>
#include <eepp/math/rect.hpp>
#include <eepp/math/vector2.hpp>
#include <eepp/math/cinterpolation.hpp>
#include <eepp/math/cwaypoints.hpp>
#include <eepp/math/math.hpp>
using namespace EE::Math;
#include <eepp/system/bitop.hpp>
#include <eepp/system/colors.hpp>
#include <eepp/system/tsingleton.hpp>
#include <eepp/system/sys.hpp>
using namespace EE::System;
#include <eepp/window/inputhelper.hpp>
using namespace EE::Window;
#include <eepp/graphics/renders.hpp>
#include <eepp/graphics/csubtexture.hpp>
#include <eepp/graphics/csprite.hpp>
#include <eepp/graphics/cfont.hpp>
#include <eepp/graphics/cprimitives.hpp>
#include <eepp/graphics/glhelper.hpp>
using namespace EE::Graphics;
#endif