typhoon/tempest/vector/C2Vector.cpp

5 lines
134 B
C++

#include "tempest/vector/C2Vector.hpp"
bool C2Vector::operator==(const C2Vector& v) {
return this->x == v.x && this->y == v.y;
}