blob: 6006935da90aa5517884c6ed144a2fa261f03267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef YABS_UTILS_H
#define YABS_UTILS_H
/*********************************/
/* YABS ( // */
/* yabs_gameplay ( )/ */
/* by salade )(/ */
/* ________________ ( /) */
/* ()__)____________))))) :^} */
/*********************************/
namespace utils {
// unused, for now :^}
int min(int v1, int v2);
int max(int v1, int v2);
int clamp(int v, int v1, int v2);
} // namespace utils
#endif /* YABS_UTILS_H */
|