forked from Skyrat-SS13/Skyrat-tg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_basemap.dm
25 lines (22 loc) · 865 Bytes
/
_basemap.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//#define LOWMEMORYMODE //uncomment this to load centcom and runtime station and thats it.
#include "map_files\generic\CentCom.dmm"
#ifndef LOWMEMORYMODE
#ifdef ALL_MAPS
#include "map_files\Birdshot\birdshot.dmm"
#include "map_files\debug\multiz.dmm"
#include "map_files\debug\runtimestation.dmm"
#include "map_files\Deltastation\DeltaStation2.dmm"
#include "map_files\IceBoxStation\IceBoxStation.dmm"
#include "map_files\MetaStation\MetaStation.dmm"
#include "map_files\Mining\Lavaland.dmm"
#include "map_files\NorthStar\north_star.dmm"
#include "map_files\tramstation\tramstation.dmm"
// SKYRAT EDIT ADDITON START - Compiling our modular maps too!
#include "map_files\VoidRaptor\VoidRaptor.dmm"
#include "map_files\NSVBlueshift\Blueshift.dmm"
// SKYRAT EDIT END
#ifdef CIBUILDING
#include "templates.dm"
#endif
#endif
#endif