Commit 327ad447c8c806eab0d0c70431f98be954406f12
1 parent
29ffb918
.
Showing
1 changed file
with
0 additions
and
23 deletions
Show diff stats
test2.h deleted
... | ... | @@ -1,23 +0,0 @@ |
1 | -#ifndef MAIN_H | |
2 | -#define MAIN_H | |
3 | - | |
4 | -#include <stdio.h> | |
5 | -#include <stdlib.h> | |
6 | -#define TAILLE_X 700 | |
7 | - | |
8 | - | |
9 | -typedef struct entite | |
10 | -{int image;int x;int y;int speed;}entite; | |
11 | - | |
12 | - | |
13 | -typedef struct l_entite | |
14 | -{entite ent;struct l_entite* next;}l_entite; | |
15 | - | |
16 | -l_entite* create_l_entite (int x,int y,int speed,int image); | |
17 | -entite create_entite (entite ent,int x,int y, int speed, int image); | |
18 | -void add_entite (l_entite** head,int x,int y,int speed,int image); | |
19 | -void display_l_entite (l_entite* mons); | |
20 | -void display_entite (entite ent); | |
21 | -void moveMissile (l_entite* msl); | |
22 | - | |
23 | -#endif | |
24 | 0 | \ No newline at end of file |