Add src folder for all .c and include folder .h files => clearer structure, no documents mixed into code files
4 lines
159 B
C
4 lines
159 B
C
#include "game.h"
|
|
#include "snake.h"
|
|
void renderGame(gameData_t game, snake_t snake);
|
|
//erstellt aus Spielfeldstruktur die graphische Anzeige mit SDL-Framework
|