- Add empty source files for all planned modules - Add source files to CMAKE source list - Fix and extend header files so there are no errors - Create global structs in game.c and config.c
14 lines
213 B
C
14 lines
213 B
C
#include "food.h"
|
|
|
|
// platziert zufällig (mit bestimmtem Algorithmus) Fressen auf dem Spielfeld
|
|
void placeFood(int count)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Überprüft, ob Snake gefressen hat
|
|
void ckeckEaten()
|
|
{
|
|
return;
|
|
}
|