-
Notifications
You must be signed in to change notification settings - Fork 44
/
config.h
28 lines (19 loc) · 999 Bytes
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef GAMEJAM2024_CONFIG_H
#define GAMEJAM2024_CONFIG_H
#include "core.h"
/* ==================================================================================================================
Don't use these macros as getter functions, use stuff like core_get_aidifficulty() and core_get_playercount()
================================================================================================================== */
// Skip asking the number of players and assume PLAYER_COUNT
#define SKIP_PLAYERSELECTION 0
// The number of human players
#define PLAYER_COUNT 1
// Skip asking the AI difficulty and assume AI_DIFFICULTY
#define SKIP_DIFFICULTYSELECTION 0
// The difficulty of the AI.
#define AI_DIFFICULTY DIFF_MEDIUM
// Skip the minigame selection and boot straight into MINIGAME_TO_TEST
#define SKIP_MINIGAMESELECTION 0
// The current minigame you want to test
#define MINIGAME_TO_TEST "examplegame"
#endif