mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-23 21:17:20 +01:00
46 lines
781 B
Plaintext
46 lines
781 B
Plaintext
#ifndef CITESTING
|
|
|
|
/*********************/
|
|
/* MAP SELECTION */
|
|
/* FOR LIVE SERVER */
|
|
/*********************/
|
|
|
|
//#define USE_MAP_TETHER
|
|
//#define USE_MAP_STELLARDELIGHT
|
|
//#define USE_MAP_GROUNDBASE
|
|
#define USE_MAP_CRYOGAIA // YW edit
|
|
|
|
// 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
|
|
|
|
////YW
|
|
// Cryogaia
|
|
#ifdef USE_MAP_CRYOGAIA
|
|
#include "../yw/cryogaia.dm"
|
|
#endif
|