Added player names and some debug stuff

This commit is contained in:
2011-07-01 20:00:19 -04:00
parent bf151a928a
commit e221f1990c
6 changed files with 57 additions and 28 deletions

4
game.h
View File

@ -43,6 +43,10 @@ class Game : public GameState
// surfaces containing textures to draw
SDL_Surface* background;
TTF_Font* font;
#ifdef DEBUG
void print_debug_info();
#endif
};
#endif