mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-12 18:51:53 +00:00
* Refactors the forensics component into a datum * Refactors the forensics component into a datum * Refactors the forensics component into a datum Co-authored-by: Seth Scherer <supernovaa41@gmx.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
11 lines
570 B
Plaintext
11 lines
570 B
Plaintext
/// Returns the fingerprints on this atom
|
|
#define GET_ATOM_FINGERPRINTS(atom) atom.forensics?.fingerprints
|
|
/// Returns the hidden prints on this atom
|
|
#define GET_ATOM_HIDDENPRINTS(atom) atom.forensics?.hiddenprints
|
|
/// Returns the blood dna on this atom
|
|
#define GET_ATOM_BLOOD_DNA(atom) atom.forensics?.blood_DNA
|
|
/// Returns the fibers on this atom
|
|
#define GET_ATOM_FIBRES(atom) atom.forensics?.fibers
|
|
/// Returns the number of unique blood dna sources on this atom
|
|
#define GET_ATOM_BLOOD_DNA_LENGTH(atom) (isnull(atom.forensics) ? 0 : length(atom.forensics.blood_DNA))
|