diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2023-08-12 17:09:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-12 18:09:47 -0600 |
| commit | 08fa2f03fc1333057e265e80dd7ba8b1fc59b472 (patch) | |
| tree | edca7bf887b5cbe93a33a29fa4115459ae79f35c /include/SSystem | |
| parent | c8bb857b13dbc4d1ec0c3a7a0929e7859420a317 (diff) | |
Kytag09 and Kytag11 OK, work on d_a_bg_obj and d_kankyo (#1877)
* work on kankyo / d_a_bg_obj
* d_a_bg_obj work / kytag09 and kytag11 OK
* remove asm
Diffstat (limited to 'include/SSystem')
| -rw-r--r-- | include/SSystem/SComponent/c_cc_d.h | 4 | ||||
| -rw-r--r-- | include/SSystem/SComponent/c_m3d_g_tri.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/SSystem/SComponent/c_cc_d.h b/include/SSystem/SComponent/c_cc_d.h index f123a414f8..a42b810685 100644 --- a/include/SSystem/SComponent/c_cc_d.h +++ b/include/SSystem/SComponent/c_cc_d.h @@ -100,6 +100,10 @@ public: STATIC_ASSERT(0x20 == sizeof(cCcD_ShapeAttr)); +struct cCcD_SrcTriAttr { + cM3dGTriS mTri; +}; + class cCcD_TriAttr : public cCcD_ShapeAttr, public cM3dGTri { public: /* 80263C04 */ virtual void CalcAabBox(); diff --git a/include/SSystem/SComponent/c_m3d_g_tri.h b/include/SSystem/SComponent/c_m3d_g_tri.h index 24338c6582..59b427ef92 100644 --- a/include/SSystem/SComponent/c_m3d_g_tri.h +++ b/include/SSystem/SComponent/c_m3d_g_tri.h @@ -8,6 +8,12 @@ class cM3dGCyl; +struct cM3dGTriS { + Vec a; + Vec b; + Vec c; +}; + class cM3dGTri : public cM3dGPla { // private: public: |
