mAng3_c Zero symbol known from NSMBW

This commit is contained in:
elijah-thomas774
2024-05-12 12:45:45 -04:00
parent 727482b4d6
commit 3e76db8b16
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ struct mAng {
class mAng3_c {
public:
s16 x, y, z;
mAng3_c(s16 fx, s16 fy, s16 fz): x(fx), y(fy), z(fz) {}
mAng3_c(s16 fx, s16 fy, s16 fz) : x(fx), y(fy), z(fz) {}
void set(s16 fx, s16 fy, s16 fz) {
x = fx;
@@ -23,7 +23,7 @@ public:
z = fz;
}
static mAng3_c ZERO;
static mAng3_c Zero;
};
#endif