mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
12 lines
504 B
Plaintext
12 lines
504 B
Plaintext
// This file is included right at the start of the DME.
|
|
// Its purpose is to enable multiple lints (pragmas) that are supported by OpenDream to better validate the codebase
|
|
// These are essentially nitpicks the DM compiler should pick up on but doesnt
|
|
|
|
#ifndef SPACEMAN_DMM
|
|
#ifdef OPENDREAM
|
|
// These are in their own file as you need to do it with an include as a hack to avoid
|
|
// SpacemanDMM evaluating the #pragma lines, even if its outside a block it cares about
|
|
#include "__pragmas.dm"
|
|
#endif
|
|
#endif
|