Implemented font framework, print info about each vertex

This commit is contained in:
2011-07-01 13:15:30 -04:00
parent 36414a6996
commit 938e75716c
7 changed files with 79 additions and 5 deletions

2
game.h
View File

@ -10,6 +10,7 @@
#include "gamedata.h"
#include "gamestate.h"
#include <stack>
#include <SDL_ttf.h>
using std::stack;
@ -40,6 +41,7 @@ class Game : public GameState
// surfaces containing textures to draw
SDL_Surface* background;
TTF_Font* font;
};
#endif