point.h 153 B

1234567891011121314
  1. #ifndef POINT_H
  2. #define POINT_H
  3. typedef struct {
  4. int x;
  5. int y;
  6. } POINT;
  7. typedef struct {
  8. float x;
  9. float y;
  10. } POINTF;
  11. #endif // POINT_H