mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
39 lines
691 B
Plaintext
39 lines
691 B
Plaintext
#ifndef CITESTING
|
|
|
|
/*********************/
|
|
/* MAP SELECTION */
|
|
/* FOR LIVE SERVER */
|
|
/*********************/
|
|
|
|
#define USE_MAP_SOUTHERN_CROSS
|
|
// #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
|
|
|
|
// Relic Base
|
|
#ifdef USE_MAP_RELIC_BASE
|
|
#include "../relic_base/relicbase.dm"
|
|
#endif
|
|
|
|
#ifdef USE_MAP_MINITEST
|
|
#include "../virgo_minitest/virgo_minitest.dm"
|
|
#endif
|