]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/gtkutil/glfont.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / libs / gtkutil / glfont.h
index 06bfd4cd91deb94c77bb753fa162a85b2d23cade..ca39a6a8a86970f0ff3b012e4e9ee5830312782f 100644 (file)
 
 typedef unsigned int GLuint;
 
-class GLFont
-{
+class GLFont {
 public:
-virtual int getPixelHeight() const = 0;
-virtual int getPixelAscent() const = 0;
-virtual int getPixelDescent() const = 0;
-virtual void printString( const char *s ) = 0;
-virtual ~GLFont(){
-}
+    virtual int getPixelHeight() const = 0;
+
+    virtual int getPixelAscent() const = 0;
+
+    virtual int getPixelDescent() const = 0;
+
+    virtual void printString(const char *s) = 0;
+
+    virtual ~GLFont()
+    {
+    }
 };
 
-GLFont *glfont_create( const char* font_string );
+GLFont *glfont_create(const char *font_string);
 // release with delete
 
 #endif