mirror of
https://github.com/zeldaret/ss
synced 2026-07-11 22:50:06 -04:00
almost there
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user