spectator/util.h (
13
lines of code) (
raw
):
#pragma once namespace spectator { template <typename T> T restrict(T amount, T min, T max) { auto r = amount; if (r > max) { r = max; } else if (r < min) { r = min; } return r; } } // namespace spectator