mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-20 19:46:19 +01:00
Added dickgirl version of all bootyborgs and improved all of the sprites. Ported /tg/station's service, beaker, and circuit manipulator modules and upgrades for their respective borg types. Added rags, soap, crowbar, ect. to appropriate cyborg modules for quality of life improvment. Made similar changes to dog-borgs to bring them up to speed with the rest of the borg modules.
14 lines
453 B
Plaintext
14 lines
453 B
Plaintext
// Interfaces for the SpacemanDMM linter, define'd to nothing when the linter
|
|
// is not in use.
|
|
|
|
// The SPACEMAN_DMM define is set by the linter and other tooling when it runs.
|
|
#ifdef SPACEMAN_DMM
|
|
#define RETURN_TYPE(X) set SpacemanDMM_return_type = X
|
|
#define SHOULD_CALL_PARENT(X) set SpacemanDMM_should_call_parent = X
|
|
#define UNLINT(X) SpacemanDMM_unlint(X)
|
|
#else
|
|
#define RETURN_TYPE(X)
|
|
#define SHOULD_CALL_PARENT(X)
|
|
#define UNLINT(X) X
|
|
#endif
|