diff options
Diffstat (limited to 'Client/Source/Math/Matrix22.h')
-rw-r--r-- | Client/Source/Math/Matrix22.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Client/Source/Math/Matrix22.h b/Client/Source/Math/Matrix22.h new file mode 100644 index 0000000..c777084 --- /dev/null +++ b/Client/Source/Math/Matrix22.h @@ -0,0 +1,10 @@ +#pragma once + +class Matrix22 +{ +public: + float m[2][2]; // row major + + + +}; |