Files
CS2Cheat/TempleWare-CS2/source/templeware/utils/math/math.h
2025-07-17 13:52:06 +03:00

9 lines
159 B
C++

#pragma once
#include <algorithm>
namespace Math {
template <typename T>
T clamp(T value, T min, T max) {
return std::min(std::max(value, min), max);
}
}