mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 18:42:28 +00:00
5 lines
134 B
C++
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;
|
|
}
|