mirror of
https://github.com/zeldaret/tp
synced 2026-08-04 01:03:47 -04:00
Debug d_a_e_ym (#3003)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user