ajout rectification makefile + struct pixel

This commit is contained in:
2023-12-03 14:16:38 +01:00
parent b76b89f890
commit f8d4e822f1
6 changed files with 110 additions and 83 deletions

15
main.h
View File

@@ -7,5 +7,18 @@
#define H_GAME 600
#define T_PIXEL 15
#define DECALEMENT 30
#define PASTILLES 5
#endif
struct PIXELS {
int x;
int y;
};
typedef struct PIXELS PIXELS;
PIXELS gen_pastille();
#endif