feat(vector): add operator+ for C3Vector and C3Vector

This commit is contained in:
fallenoak 2020-11-26 11:38:37 -06:00
parent 4278157faf
commit ee4612182a
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 21 additions and 0 deletions

View file

@ -20,4 +20,6 @@ class C3Vector {
float SquaredMag() const;
};
C3Vector operator+(const C3Vector& l, const C3Vector& r);
#endif