mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-06 23:51:43 +00:00
7 lines
281 B
Plaintext
7 lines
281 B
Plaintext
/// Validates the proc exists on this type (or global unfortunately)
|
|
#define PROC_REF(X) (nameof(.proc/##X))
|
|
#define TYPE_PROC_REF(TYPE, X) (nameof(##TYPE.proc/##X))
|
|
#define GLOBAL_PROC_REF(X) (/proc/##X)
|
|
#define NAMEOF_STATIC(datum, X) (#X || type::##X)
|
|
#define CALL_EXT call_ext
|