Unuk/src/libUnuk/Font.h
Rtch90 c100118d72 -- [Add] Added an image loader, we shall be able to blit to screen next.
-- [Add] Added rects so we can play on the stack.
2011-11-09 00:21:30 +00:00

12 lines
201 B
C++

#ifndef _FONT_H_
#define _FONT_H_
#include <SDL/SDL_ttf.h>
#include <fstream>
#include <assert.h>
#include "Debug.h"
using namespace std;
TTF_Font* Font(const char* filename, const int size);
#endif