diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-06-21 18:11:55 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-06-21 21:31:11 +0700 |
commit | 325dca9f212f9fd44cd10a8180529970c7a08c72 (patch) | |
tree | e1cfaec078dfa49f4d51d05eef8a5b0967843a41 /src/Text.h | |
parent | 10f5376de856ecead4e8bbf66f19157f36f7a382 (diff) | |
download | blackshades-1.2.0.tar.gz |
Remove trailing whitespaces and duplicated blank lines 1.2.0
Diffstat (limited to 'src/Text.h')
-rw-r--r-- | src/Text.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/Text.h b/src/Text.h index 99e8a6c..77dee46 100644 --- a/src/Text.h +++ b/src/Text.h @@ -1,10 +1,9 @@ #ifndef _TEXT_H_ #define _TEXT_H_ - /**> HEADER FILES <**/ #include "Quaternions.h" -#ifdef OS9 +#ifdef OS9 #include <gl.h> #include <glu.h> #else @@ -18,15 +17,14 @@ class Text{ public: GLuint FontTexture; GLuint base; - + void LoadFontTexture(char *fileName); void BuildFont(); void glPrint(GLint x, GLint y, char *string, int set, float size, float width, float height); - + ~Text(){ glDeleteTextures( 1, (const GLuint *)FontTexture ); } }; #endif - |