diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-07-11 21:24:00 +0200 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-07-11 21:24:00 +0200 |
commit | 3e16eb8d2f15d40239bdf1f375daeab7bcdf95fa (patch) | |
tree | d22010b7852fc8dadf203678b10210a2937a9c1f /src/yabs_utils.h | |
parent | small refactor along with cube slaying (diff) | |
download | yabs-3e16eb8d2f15d40239bdf1f375daeab7bcdf95fa.tar.gz yabs-3e16eb8d2f15d40239bdf1f375daeab7bcdf95fa.tar.bz2 yabs-3e16eb8d2f15d40239bdf1f375daeab7bcdf95fa.tar.xz yabs-3e16eb8d2f15d40239bdf1f375daeab7bcdf95fa.tar.zst yabs-3e16eb8d2f15d40239bdf1f375daeab7bcdf95fa.zip |
dod
Diffstat (limited to 'src/yabs_utils.h')
-rw-r--r-- | src/yabs_utils.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/yabs_utils.h b/src/yabs_utils.h index 6006935..a931189 100644 --- a/src/yabs_utils.h +++ b/src/yabs_utils.h @@ -1,6 +1,3 @@ -#ifndef YABS_UTILS_H -#define YABS_UTILS_H - /*********************************/ /* YABS ( // */ /* yabs_gameplay ( )/ */ @@ -9,11 +6,15 @@ /* ()__)____________))))) :^} */ /*********************************/ +#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 +} // namespace utils + #endif /* YABS_UTILS_H */ |