diff options
Diffstat (limited to 'core/src/Utils/Vector.hpp')
-rw-r--r-- | core/src/Utils/Vector.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/Utils/Vector.hpp b/core/src/Utils/Vector.hpp new file mode 100644 index 0000000..372d484 --- /dev/null +++ b/core/src/Utils/Vector.hpp @@ -0,0 +1,6 @@ +#pragma once + +struct Vec2i { + int x = 0; + int y = 0; +}; |