#ifndef __TEXT_DISPLAY_H__ #define __TEXT_DISPLAY_H__ struct FontTexture; void TextDisplay_drawString(const char * string, struct FontTexture * fontTexture, float emHeight, float x, float y); float TextDisplay_measureString(const char * string, struct FontTexture * fontTexture, float emHeight); #endif