mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
14 lines
153 B
C
14 lines
153 B
C
#ifndef POINT_H
|
|
#define POINT_H
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
} POINT;
|
|
|
|
typedef struct {
|
|
float x;
|
|
float y;
|
|
} POINTF;
|
|
|
|
#endif // POINT_H
|