15 lines
223 B
C
15 lines
223 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;
|
||
|
|
|
||
|
|
#endif // ARC_MATH_POINT_H_
|