mirror of
https://github.com/bronson-g/awesomeUnicorns.git
synced 2026-05-24 09:54:28 -04:00
14 lines
288 B
C
14 lines
288 B
C
#ifndef POINT_H
|
|
#define POINT_H
|
|
|
|
#include "structs.h"
|
|
|
|
void copyPoint(Point* p1, Point p2);
|
|
Point newPoint(int x, int y);
|
|
/* Compare the two points to see if they are equal.
|
|
* Params: Two points. */
|
|
int compare(Point p1, Point p2);
|
|
int compareRange(Point p, Point t, int range);
|
|
|
|
#endif
|