Coordonnee.h 224 B

12345678910111213
  1. #ifndef COORDONNEE_H_INCLUDED
  2. #define COORDONNEE_H_INCLUDED
  3. typedef struct DoubleAxe DoubleAxe;
  4. struct DoubleAxe
  5. {
  6. int x;
  7. int y;
  8. };
  9. void initialiserDbAxes(DoubleAxe* paquet);
  10. #endif // COORDONNEE_H_INCLUDED