breakhack/src/vector2d.c

7 lines
111 B
C
Raw Normal View History

#include "vector2d.h"
bool
vector2d_equals(Vector2d v1, Vector2d v2)
{
return v1.x == v2.x && v1.y == v2.y;
}