diff options
author | Max <mparisi@stevens.edu> | 2020-11-07 15:14:14 -0500 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-11-07 15:14:14 -0500 |
commit | 2ac190172940c5646a8848c46a3a1f61c7cbcfa9 (patch) | |
tree | 91707d9073b46576b96b4e102f4a6803b3bf10a4 /include/SDK/mtx.h | |
parent | 2ae7b5c414293c202ef46942ad0fa34ad373763f (diff) |
decomp 801DDF78 and add mtx.h
Diffstat (limited to 'include/SDK/mtx.h')
-rw-r--r-- | include/SDK/mtx.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/SDK/mtx.h b/include/SDK/mtx.h new file mode 100644 index 0000000..a2c9cd1 --- /dev/null +++ b/include/SDK/mtx.h @@ -0,0 +1,22 @@ +#ifndef POKEREVO_MTX_H
+#define POKEREVO_MTX_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef f32 Mtx[3][4];
+typedef f32 (*MtxPtr)[4];
+#define MTX_PTR_OFFSET 3
+
+
+#define MTXIdentity PSMTXIdentity
+
+void PSMTXIdentity(Mtx m);
+
+#ifdef __cplusplus
+}
+#endif
+
+
+#endif //POKEREVO_MTX_H
|