Archeus 0.0.0
A C library and game engine that focuses on documentation
Loading...
Searching...
No Matches
circle.h
Go to the documentation of this file.
1#ifndef ARC_MATH_CIRCLE_H_
2#define ARC_MATH_CIRCLE_H_
3
4#include <stdint.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10typedef struct ARC_Circle {
11 int32_t x;
12 int32_t y;
13 int32_t r;
15
16#ifdef __cplusplus
17}
18#endif
19
20#endif // ARC_MATH_CIRCLE_H_
struct ARC_Circle ARC_Circle
int32_t x
Definition circle.h:11
int32_t y
Definition circle.h:12
int32_t r
Definition circle.h:13