#ifndef COORDONNEE_H_INCLUDED
#define COORDONNEE_H_INCLUDED

typedef struct DoubleAxe DoubleAxe;
struct DoubleAxe
{
    int x;
    int y;
};

void initialiserDbAxes(DoubleAxe* paquet);

#endif // COORDONNEE_H_INCLUDED