test.h 440 Bytes
#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