2010-04-05 23:38:59 +02:00
|
|
|
#ifndef _VIEWGLOBAL_H
|
|
|
|
#define _VIEWGLOBAL_H
|
|
|
|
|
2010-06-06 01:22:01 +02:00
|
|
|
#include "EngineEnums.h"
|
|
|
|
|
2010-04-05 23:38:59 +02:00
|
|
|
namespace Engine {
|
|
|
|
|
|
|
|
/** \brief Draws the given string at the given position using the current
|
|
|
|
* OpenGL transformations */
|
|
|
|
void DrawGLString (float x, float y, const char* str);
|
2010-05-02 22:39:49 +02:00
|
|
|
void SelectFont (const char* font);
|
2010-06-06 01:22:01 +02:00
|
|
|
void SetFontJustification (FontJustification justification);
|
2010-04-05 23:38:59 +02:00
|
|
|
|
|
|
|
unsigned int GetWindowWidth();
|
|
|
|
unsigned int GetWindowHeight();
|
|
|
|
|
|
|
|
int GetFrameRate ();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _VIEWGLOBAL_H */
|