20 lines
262 B
C
20 lines
262 B
C
#ifndef ARC_MATH_CIRCLE_H_
|
|
#define ARC_MATH_CIRCLE_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct ARC_Circle {
|
|
int32_t x;
|
|
int32_t y;
|
|
int32_t r;
|
|
} ARC_Circle;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // ARC_MATH_CIRCLE_H_
|