18 lines
306 B
C
18 lines
306 B
C
#ifndef LIBFLINT_H_UTILITY
|
|
#define LIBFLINT_H_UTILITY
|
|
|
|
/**
|
|
* \struct Point
|
|
* \brief Representation of a point on a two dimensional grid
|
|
* \var int x
|
|
* x point on the 2d grid
|
|
* \var int y
|
|
* y point on the 2d grid
|
|
*/
|
|
typedef struct Point {
|
|
int x;
|
|
int y;
|
|
} Point;
|
|
|
|
#endif // LIBFLINT_H_UTILITY
|