Changeset 5344 in orxonox.OLD for trunk/src/lib/graphics/text_engine/text_engine.h
- Timestamp:
- Oct 10, 2005, 12:39:21 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/text_engine/text_engine.h
r5343 r5344 18 18 19 19 #include "base_object.h" 20 #include "font.h"21 #include "text.h"22 20 23 21 #include "vector.h" … … 26 24 class PNode; 27 25 class Font; 26 class Text; 28 27 29 28 /////////////////// … … 37 36 /** @returns a Pointer to the only object of this Class */ 38 37 inline static TextEngine* getInstance() { if (!singletonRef) singletonRef = new TextEngine(); return singletonRef; }; 39 40 Text* createText(const char* fontFile,41 unsigned int fontSize = TEXT_DEFAULT_SIZE,42 int textType = TEXT_RENDER_DYNAMIC);43 38 44 39 void debug() const;
Note: See TracChangeset
for help on using the changeset viewer.