summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-04-14 16:02:29 +0200
committerMel <einebeere@gmail.com>2024-04-14 16:02:29 +0200
commit659c8b58e5307baad98f52199372a8b0261b4106 (patch)
treeaa4086a748bec5a81c74cbef4aca17e293bfe226 /src
parentfbc76cef9fa96862be253dff5d891c14a93d2791 (diff)
downloadmeowcraft-659c8b58e5307baad98f52199372a8b0261b4106.tar.zst
meowcraft-659c8b58e5307baad98f52199372a8b0261b4106.zip
Add missing <array> include
Diffstat (limited to 'src')
-rw-r--r--src/Math/Vector.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Math/Vector.hpp b/src/Math/Vector.hpp
index d179049..a81d9c5 100644
--- a/src/Math/Vector.hpp
+++ b/src/Math/Vector.hpp
@@ -1,5 +1,6 @@
 #pragma once
 
+#include <array>
 #include <sstream>
 #include <cmath>
 #include "../Common/Sizes.hpp"