summaryrefslogtreecommitdiff
path: root/include/JSystem
diff options
context:
space:
mode:
authorJcw87 <Jcw87@users.noreply.github.com>2023-08-27 20:09:20 -0700
committerGitHub <noreply@github.com>2023-08-27 21:09:20 -0600
commit6a4e50e74b9823329889c509e6e548ccdd18844d (patch)
tree4cae709417c26eee8bdeb3180b211a65f5fce5a5 /include/JSystem
parentd369e2908cbe20165b5a2aaf6875807ffcc5da6c (diff)
d_file_select::dFile_select3D_c (#1899)
Diffstat (limited to 'include/JSystem')
-rw-r--r--include/JSystem/J3DGraphAnimator/J3DModel.h4
-rw-r--r--include/JSystem/J3DGraphLoader/J3DAnmLoader.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/include/JSystem/J3DGraphAnimator/J3DModel.h b/include/JSystem/J3DGraphAnimator/J3DModel.h
index f1a192199f..ad15bbdac2 100644
--- a/include/JSystem/J3DGraphAnimator/J3DModel.h
+++ b/include/JSystem/J3DGraphAnimator/J3DModel.h
@@ -34,6 +34,10 @@ public:
J3DModel() {
initialize();
}
+ J3DModel(J3DModelData* param_0, u32 param_1, u32 param_2) {
+ initialize();
+ entryModelData(param_0, param_1, param_2);
+ }
/* 800CFFF4 */ void setBaseTRMtx(f32 (*)[4]);
/* 80327100 */ void initialize();
diff --git a/include/JSystem/J3DGraphLoader/J3DAnmLoader.h b/include/JSystem/J3DGraphLoader/J3DAnmLoader.h
index 21df0044fd..959f56df2f 100644
--- a/include/JSystem/J3DGraphLoader/J3DAnmLoader.h
+++ b/include/JSystem/J3DGraphLoader/J3DAnmLoader.h
@@ -10,6 +10,8 @@ struct J3DAnmBase;
struct J3DAnmLoaderDataBase {
/* 80337B40 */ static void* load(void const*, J3DAnmLoaderDataBaseFlag);
/* 80338134 */ static void setResource(J3DAnmBase*, void const*);
+
+ static void* load(void const* param_0) { return load(param_0, J3DLOADER_UNK_FLAG0); }
};
#endif /* J3DANMLOADER_H */