Files
Momentum-Firmware/applications/external/jetpack_joyride/includes/point.h
2023-07-04 23:57:01 +02:00

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