mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-29 02:13:12 +00:00
* Experimental: Port OD Pragma Lints
* first pass: Includes icon forge fixes/updates
* 2nd pass
* third pass
* debug_ai: This what you're unhappy with?
* Revert "debug_ai: This what you're unhappy with?"
This reverts commit bc178792e6.
* How about this
* Or is it the else?
* Pass summer
---------
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
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
|