spacebox/src/utility.hpp

24 lines
776 B
C++

/* /\ +--------------------------------------------------------------+
____/ \____ /| - zlib/MIT/Unlicenced game framework licensed to freely use, |
\ / / | copy, modify and sell without restriction |
+--\ ^__^ /--+ | |
| ~/ \~ | | - originally created at [http://nugget.fun] |
| ~~~~~~~~~~~~ | +--------------------------------------------------------------+
| SPACE ~~~~~ | /
| ~~~~~~~ BOX |/
+--------------+
[utility.hpp]
For lightweight utility functions that extend C++ functionality and don't depend on
any [SPACE BOX] specific functions.
*/
#pragma once
namespace sb
{
int mod(int, int);
}