Jetpack joyride and NFC Maker apps

This commit is contained in:
MX
2023-07-06 18:44:45 +03:00
parent f81f4edad3
commit 79bcd5a1c6
66 changed files with 2349 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef POINT_H
#define POINT_H
typedef struct {
int x;
int y;
} POINT;
typedef struct {
float x;
float y;
} POINTF;
#endif // POINT_H