Files
siliconsandGitHub 9d6a141e5b mc update: init stages, better subsystem init tracking, etc (#6857)
modifies the hollow metrics API; that'll probably be implemented soon
adds init stages
changes SSatoms to not abuse its `initialized` variable

closes #6858
2024-11-15 14:41:25 -07:00

24 lines
526 B
Plaintext

//* This file is explicitly licensed under the MIT license. *//
//* Copyright (c) 2024 Citadel Station Developers *//
/**
* numerical metric
*
* This is what you can use for things like:
*
* * How many times a thing happened in a round
*/
/datum/metric/numerical
/**
* overwrites a numerical metric
*/
/proc/metric_set_numerical(datum/metric/numerical/typepath, amount)
return
/**
* increments a numerical metric
*/
/proc/metric_increment_numerical(datum/metric/numerical/typepath, amount = 1)
return