mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00: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
|