Blame view

Main/init.h 490 Bytes
590ac30b   Martin CHAUVELIERE   Debut Collision
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #include <stdio.h>
  #include <stdlib.h>
  
  extern int canon;
  extern int missile;
  extern int sbire;
  extern int bouillie;
  extern struct liste_entite *enemies;
  extern struct liste_entite *tires;
  extern struct entite joueur;
  extern char Nom[20];
  extern char input;
  extern int hitboxcanonL;
  extern int hitboxcanonH;
  extern int hitboxmissileL;
  extern int hitboxmissileH;
  extern int hitboxsbireL;
  extern int hitboxsbireH;
66b129e5   Martin CHAUVELIERE   Collisions Sbires...
19
20
  extern int hitboxbouillieL;
  extern int hitboxbouillieH;
590ac30b   Martin CHAUVELIERE   Debut Collision
21
22
  
  void initialiser();