24 lines
369 B
C
24 lines
369 B
C
![]() |
#ifndef _DEFAULTS_H_
|
||
|
#define _DEFAULTS_H_
|
||
|
|
||
|
#ifndef WIFI_SSID
|
||
|
#define WIFI_SSID "3 Factions CTF Timer"
|
||
|
#endif
|
||
|
|
||
|
#ifndef WIFI_PASS
|
||
|
#define WIFI_PASS "CaptureTheFlag"
|
||
|
#endif
|
||
|
|
||
|
#ifndef FACTION_1_NAME
|
||
|
#define FACTION_1_NAME "Team A"
|
||
|
#endif
|
||
|
|
||
|
#ifndef FACTION_2_NAME
|
||
|
#define FACTION_2_NAME "Team B"
|
||
|
#endif
|
||
|
|
||
|
#ifndef FACTION_3_NAME
|
||
|
#define FACTION_3_NAME "Team C"
|
||
|
#endif
|
||
|
|
||
|
#endif
|