mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
39 lines
665 B
Plaintext
39 lines
665 B
Plaintext
#ifndef CITESTING
|
|
|
|
/*********************/
|
|
/* MAP SELECTION */
|
|
/* FOR LIVE SERVER */
|
|
/*********************/
|
|
|
|
// #define USE_MAP_TETHER
|
|
#define USE_MAP_STELLARDELIGHT
|
|
// #define USE_MAP_GROUNDBASE
|
|
|
|
// Debug
|
|
// #define USE_MAP_MINITEST
|
|
|
|
/*********************/
|
|
/* End Map Selection */
|
|
/*********************/
|
|
|
|
#endif
|
|
|
|
// Tether
|
|
#ifdef USE_MAP_TETHER
|
|
#include "../tether/tether.dm"
|
|
#endif
|
|
|
|
// Stellar Delight
|
|
#ifdef USE_MAP_STELLARDELIGHT
|
|
#include "../stellar_delight/stellar_delight.dm"
|
|
#endif
|
|
|
|
// Groundbase
|
|
#ifdef USE_MAP_GROUNDBASE
|
|
#include "../groundbase/groundbase.dm"
|
|
#endif
|
|
|
|
#ifdef USE_MAP_MINITEST
|
|
#include "../virgo_minitest/virgo_minitest.dm"
|
|
#endif
|