mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
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.
32 lines
793 B
C++
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
|