vector2d.h 187 B

123456789101112131415
  1. #ifndef _DD_VECTOR2D_H_
  2. #define _DD_VECTOR2D_H_
  3. struct dd_vector2d {
  4. int x;
  5. int y;
  6. };
  7. struct dd_vector2d *dd_vector2d_create();
  8. void dd_vector2d_init(struct dd_vector2d *);
  9. #endif