typhoon/tempest/vector/C2Vector.cpp

6 lines
134 B
C++
Raw Permalink Normal View History

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