Debug d_a_e_ym (#3003)

This commit is contained in:
YunataSavior
2025-12-26 16:23:14 -08:00
committed by GitHub
parent 09280ae00b
commit 6e3b22adee
6 changed files with 627 additions and 406 deletions
+2 -1
View File
@@ -36,10 +36,11 @@ struct cXyz : Vec {
this->y = vec.y;
this->z = vec.z;
}
void operator=(const Vec& vec) {
cXyz& operator=(const Vec& vec) {
this->x = vec.x;
this->y = vec.y;
this->z = vec.z;
return *this;
}
cXyz operator+(Vec const&) const;
cXyz operator-(Vec const&) const;