mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-04-07 13:00:24 +03:00
Add objdiff setup
This is intended more as a proof of concept as we figure things out than the start of an actual decompilation in this repository. Target object files are currently "bring your own."
This commit is contained in:
parent
10b3c8c273
commit
7e1785e466
12 changed files with 151 additions and 27 deletions
14
objdiff/src/MMatrix.hpp
Normal file
14
objdiff/src/MMatrix.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/* JSRF Decompilation: MMatrix.hpp
|
||||
Smilebit's stack-based matrix math library.
|
||||
*/
|
||||
|
||||
#ifndef MMATRIX_HPP
|
||||
#define MMATRIX_HPP
|
||||
|
||||
#include "D3D.hpp"
|
||||
|
||||
|
||||
// 4x4 matrix type
|
||||
typedef D3DVECTOR4 Mat4[4];
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue