Tested some island and unicode rendering.

This commit is contained in:
2014-03-01 22:43:28 -04:30
parent baa18d56a2
commit 667e1b1691
7 changed files with 258 additions and 51 deletions

10
src/game_state.c Normal file
View File

@@ -0,0 +1,10 @@
#include "game_state.h"
#include "in_game.h"
void initStateArray(gs_t ** s){
int i;
for(i = 0; i < NUM_STATES; i++){
initInGameState(&((*s)[i]));
}
}