mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
45 lines
787 B
Plaintext
45 lines
787 B
Plaintext
#if !defined(CITESTING)
|
|
|
|
/*********************/
|
|
/* MAP SELECTION */
|
|
/* FOR LIVE SERVER */
|
|
/*********************/
|
|
|
|
//#define USE_MAP_SOUTHERN_CROSS
|
|
#define USE_MAP_CETUS
|
|
// #define USE_MAP_SOLUNA_NEXUS
|
|
// #define USE_MAP_RELIC_BASE
|
|
|
|
// Debug
|
|
//#define USE_MAP_MINITEST
|
|
|
|
/*********************/
|
|
/* End Map Selection */
|
|
/*********************/
|
|
|
|
#endif
|
|
|
|
// Southern Cross
|
|
#ifdef USE_MAP_SOUTHERN_CROSS
|
|
#include "../southern_cross/southern_cross.dm"
|
|
#endif
|
|
|
|
// Soluna Nexus
|
|
#ifdef USE_MAP_SOLUNA_NEXUS
|
|
#include "../soluna_nexus/soluna_nexus.dm"
|
|
#endif
|
|
|
|
// Cetus
|
|
#ifdef USE_MAP_CETUS
|
|
#include "../cetus/cetus.dm"
|
|
#endif
|
|
|
|
// Relic Base
|
|
#ifdef USE_MAP_RELIC_BASE
|
|
#include "../relic_base/relicbase.dm"
|
|
#endif
|
|
|
|
#ifdef USE_MAP_MINITEST
|
|
#include "../virgo_minitest/virgo_minitest.dm"
|
|
#endif
|