21 lines
494 B
Plaintext
21 lines
494 B
Plaintext
#ifndef _GUIUTILITY_HPP_
|
|
#define _GUIUTILITY_HPP_
|
|
|
|
/*** SDL Header Files ***/
|
|
#include <SDL.h>
|
|
|
|
/*** Custom Header Files ***/
|
|
#include "../../MathEngine/iVector/iVector2.hpp"
|
|
#include "../../MathEngine/iVector/iVector4.hpp"
|
|
|
|
namespace GUIHelpers {
|
|
typedef struct MathEngine::iVector2 Size, Position;
|
|
typedef struct MathEngine::iVector4 Padding;
|
|
typedef struct SDL_Colour RBGA;
|
|
typedef struct SDL_Rect Area;
|
|
|
|
|
|
}/// END NAMESPACE DEFINITION GUIHelpers
|
|
#endif/// END IFNDEF _GUIUTILITY_HPP_
|
|
|