Blame view

test.h 440 Bytes
8959b9d7   RABIA   "premiere livraison"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  #ifndef test_h
  #define test_h
  
  #define type_monstre 0
  #define type_vaisseau 1
  #define type_bouclier 2
  
  typedef struct entite
  {   int x,y;
      int etat ;
      int identifiant_entite;
      int type ;
  
  }entite;
  
  
  
  
  typedef struct liste_entite
  {
      entite * premiere_entite;
      int capacite;
  }liste_entite;
  
  
  
  liste_entite * initiliserentite(liste_entite * entite );
  liste_entite * suppression_entite(liste_entite * entite);
  
  
  
  
  
  
  
  
  
  
  
  
  #endif