archeus/include/arc/math/point.h
2022-12-20 00:50:55 -07:00

18 lines
282 B
C

#ifndef ARC_MATH_POINT_H_
#define ARC_MATH_POINT_H_
#include <stdint.h>
typedef struct ARC_Point {
int32_t x, y;
} ARC_Point;
typedef struct ARC_UPoint {
uint32_t x, y;
} ARC_UPoint;
typedef struct ARC_FPoint {
float x, y;
} ARC_FPoint;
#endif // ARC_MATH_POINT_H_