almost there

This commit is contained in:
elijah-thomas774
2025-11-20 01:24:43 -05:00
parent 54c3f67bdf
commit b4e57d0f40
7 changed files with 378 additions and 110 deletions
-4
View File
@@ -48,10 +48,6 @@ struct mAng {
return mAng(-mVal);
}
mAng operator+(const mAng &other) const {
return mAng(mVal + other.mVal);
}
mAng &operator+=(const mAng &other) {
mVal += other.mVal;
return *this;