unleashed-firmware/applications/external/jetpack_joyride/includes/point.h

14 lines
153 B
C
Raw Normal View History

2023-07-06 15:44:45 +00:00
#ifndef POINT_H
#define POINT_H
typedef struct {
int x;
int y;
} POINT;
typedef struct {
float x;
float y;
} POINTF;
#endif // POINT_H