summaryrefslogtreecommitdiff
path: root/include/SDK
diff options
context:
space:
mode:
Diffstat (limited to 'include/SDK')
-rw-r--r--include/SDK/mtx.h22
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