fysxasteroids/engine/ViewBaseGlobal.h

18 lines
340 B
C
Raw Normal View History

2010-04-05 23:38:59 +02:00
#ifndef _VIEWGLOBAL_H
#define _VIEWGLOBAL_H
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);
unsigned int GetWindowWidth();
unsigned int GetWindowHeight();
int GetFrameRate ();
}
#endif /* _VIEWGLOBAL_H */