summaryrefslogtreecommitdiff
path: root/Client/Source/Math/Matrix44.h
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Source/Math/Matrix44.h')
-rw-r--r--Client/Source/Math/Matrix44.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Client/Source/Math/Matrix44.h b/Client/Source/Math/Matrix44.h
new file mode 100644
index 0000000..562ac54
--- /dev/null
+++ b/Client/Source/Math/Matrix44.h
@@ -0,0 +1,8 @@
+#pragma once
+
+class Matrix44
+{
+public:
+ float m[4][4]; // row major
+
+};