archeus/include/arc/math/point.h

15 lines
223 B
C
Raw Normal View History

#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;
#endif // ARC_MATH_POINT_H_