aboutsummaryrefslogtreecommitdiffstats
path: root/src/yabs_utils.h
blob: a93118988ba3a1106cf6bb5ebb331755581ebe93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*********************************/
/*   YABS             (  //      */
/*   yabs_gameplay     ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#ifndef YABS_UTILS_H
#define YABS_UTILS_H

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 */