aboutsummaryrefslogtreecommitdiffstats
path: root/src/rfps_utils.cpp
blob: c595a214b45c861db66d27c0eb3a006923535b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "rfps_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