mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-04-07 04:50:23 +03:00
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.
14 lines
214 B
C++
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
|