summaryrefslogtreecommitdiff
path: root/include/SSystem/SComponent
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2021-10-11 09:38:53 -0700
committerGitHub <noreply@github.com>2021-10-11 18:38:53 +0200
commita2636e84c3eefa98ad8a24dbb5398b664f3d732a (patch)
tree2d2dd404de4364097f3490c77dfc8167e420da5e /include/SSystem/SComponent
parent5084413cb7c8869a866ed552070369b1aadc748f (diff)
J3D setup (#155)
* setup j3d classes * remove asm * fixes * fix newDifferedDisplayList
Diffstat (limited to 'include/SSystem/SComponent')
-rw-r--r--include/SSystem/SComponent/c_sxyz.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/SSystem/SComponent/c_sxyz.h b/include/SSystem/SComponent/c_sxyz.h
index ad1bf45b45..bcc78040d0 100644
--- a/include/SSystem/SComponent/c_sxyz.h
+++ b/include/SSystem/SComponent/c_sxyz.h
@@ -1,17 +1,9 @@
#ifndef C_SXYZ_H
#define C_SXYZ_H
+#include "dolphin/mtx/vec.h"
#include "dolphin/types.h"
-struct SVec {
- s16 x, y, z;
-
- void set(s16 oX, s16 oY, s16 oZ) {
- x = oX;
- y = oY;
- z = oZ;
- }
-};
class csXyz : public SVec {
public:
static const csXyz Zero;