unleashed-firmware/applications/external/jetpack_joyride/includes/point.h
2023-07-06 18:44:45 +03:00

14 lines
No EOL
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