JSRF-Decompilation/decompile/src/Smilebit/MMatrix.hpp
KeybadeBlox d435282a8b Compile XDK code as C
It appears to be all C code (especially the non-C++ parts of the C
runtime, of course), so we'll compile it as such.
2026-02-17 10:27:50 -05:00

14 lines
214 B
C++

/* JSRF Decompilation: Smilebit/MMatrix.hpp
Smilebit's stack-based matrix math library.
*/
#ifndef MMATRIX_HPP
#define MMATRIX_HPP
#include "../XDK/D3D.h"
// 4x4 matrix type
typedef D3DVECTOR4 Mat4[4];
#endif