diff options
Diffstat (limited to 'src/basic')
| -rw-r--r-- | src/basic/defs.hpp | 2 | ||||
| -rw-r--r-- | src/basic/math.hpp | 5 | 
2 files changed, 5 insertions, 2 deletions
diff --git a/src/basic/defs.hpp b/src/basic/defs.hpp index bfd302e..858bdd7 100644 --- a/src/basic/defs.hpp +++ b/src/basic/defs.hpp @@ -1,8 +1,6 @@  #pragma once  #include <cassert> -#include <cstdint> -#include <cstddef>  #define ARRAY_COUNT(x) (sizeof(x) / sizeof(x[0])) diff --git a/src/basic/math.hpp b/src/basic/math.hpp index c5b5940..a3e4b64 100644 --- a/src/basic/math.hpp +++ b/src/basic/math.hpp @@ -1,7 +1,12 @@  #pragma once +  #include <basic/defs.hpp> +#include <cstddef> +#include <cstdint> + +  struct V2ST {      size_t x;      size_t y;  | 
