Blame view

Space Invader/Envahisseurs/Graphique/src/Main/init.h 606 Bytes
1e8c0804   Martin CHAUVELIERE   Derniere correcti...
1
2
3
4
5
  #include <stdio.h>
  #include <stdlib.h>
  
  extern int canon;
  extern int missile;
7094c494   Martin CHAUVELIERE   Améliorations fin...
6
  extern int enemie;
1e8c0804   Martin CHAUVELIERE   Derniere correcti...
7
8
9
10
11
12
13
14
15
16
17
  extern int bouillie;
  extern int bombe;
  
  extern struct entite joueur;
  extern char Nom[];
  extern char input;
  
  extern int hitboxcanonL;
  extern int hitboxcanonH;
  extern int hitboxmissileL;
  extern int hitboxmissileH;
7094c494   Martin CHAUVELIERE   Améliorations fin...
18
19
  extern int hitboxenemieL;
  extern int hitboxenemieH;
1e8c0804   Martin CHAUVELIERE   Derniere correcti...
20
21
22
23
24
25
  extern int hitboxbouillieL;
  extern int hitboxbouillieH;
  extern int hitboxbombeL;
  extern int hitboxbombeH;
  
  void initialiser();
7094c494   Martin CHAUVELIERE   Améliorations fin...
26
  void initialiserjoueur();
1e8c0804   Martin CHAUVELIERE   Derniere correcti...
27
28
29
30
  char pagedemarrage();
  void pagemort(int nbr_vie);
  void pageGameOver();
  void pageVictoire();