Blame view

Interactif/Interactif.h 564 Bytes
590ac30b   Martin CHAUVELIERE   Debut Collision
1
2
3
  #include <stdio.h>
  #include <stdlib.h>
  
66b129e5   Martin CHAUVELIERE   Collisions Sbires...
4
5
6
7
8
9
10
  
  int CheckCollisionEntiteEntite(struct entite,int,int,struct entite,int,int);
  
  int CheckCollisionListeEntite(struct liste_entite*,int,int,struct entite,int,int);
  
  struct liste_entite* CheckCollisionListeListe(struct liste_entite*,int,int,struct liste_entite*,int,int);
  
590ac30b   Martin CHAUVELIERE   Debut Collision
11
12
  void Tirer(struct entite, struct liste_entite**);
  
66b129e5   Martin CHAUVELIERE   Collisions Sbires...
13
14
15
  void DeplacementTire(int,struct liste_entite**);
  
  void SupprIfTouch(struct liste_entite**,int,int,struct liste_entite**,int,int);
590ac30b   Martin CHAUVELIERE   Debut Collision
16
17
18
19
  
  char touche();
  
  void action(struct entite*,char,struct liste_entite**);