diff options
Diffstat (limited to 'src/yabs_utils.cpp')
-rw-r--r-- | src/yabs_utils.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/yabs_utils.cpp b/src/yabs_utils.cpp new file mode 100644 index 0000000..ca60489 --- /dev/null +++ b/src/yabs_utils.cpp @@ -0,0 +1,24 @@ +/*********************************/ +/* YABS ( // */ +/* yabs_gameplay ( )/ */ +/* by salade )(/ */ +/* ________________ ( /) */ +/* ()__)____________))))) :^} */ +/*********************************/ + +#include "yabs_utils.h" + +namespace utils { +// unused, for now :^} +int min(const int& v1, const int& v2) { + return v1 >= v2 ? v2 : v1; +} + +int max(const int& v1, const int& v2) { + return v1 >= v2 ? v1 : v2; +} + +int clamp(const int& v, const int& v1, const int& v2) { + return v >= v1 ? (v <= v2 ? v : v2) : v1; +} +} // namespace utils |