Starter project for SDL2.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
221 B

  1. #ifndef IZ_POINT2D_H
  2. #define IZ_POINT2D_H
  3. typedef float IZ_Coordinate;
  4. typedef struct {
  5. IZ_Coordinate x;
  6. IZ_Coordinate y;
  7. } IZ_Point2D;
  8. IZ_Point2D IZ_PointTranslate(IZ_Point2D, IZ_Coordinate, IZ_Coordinate);
  9. #endif