snake-pp/config.h
jonny_jr9 5bba3e1531 Add source files, Fix header files - Compiles now
- 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
2023-11-08 09:52:25 +01:00

19 lines
623 B
C

#pragma once
// global configuration macros
#define MAX_MAP_SIZE 10
// struct for storing game configuration
typedef struct config_t
{
int mapWidth; // =10 //Kartenbreite
int mapHeight; // =10 //Kartenhöhe
int cycleDurationMs; // ms between each game loop iterartion (game speed)
int difficulty; // 0-3 //Schwierigkeitsgrad
int snakeDefaultLength; // = 2 //Länge der Schlange
const char *leaderboardFilename; // Dateiname des Leaderboards
} config_t;
// global config struct defined in config.c
extern config_t config;