2022-10-29 00:22:23 -06:00
|
|
|
#ifndef ARC_MATH_VECTOR2_H_
|
|
|
|
|
#define ARC_MATH_VECTOR2_H_
|
|
|
|
|
|
|
|
|
|
typedef struct ARC_Vector2 {
|
|
|
|
|
float x, y;
|
2022-11-11 01:15:33 -07:00
|
|
|
} ARC_Vector2;
|
2022-10-29 00:22:23 -06:00
|
|
|
|
|
|
|
|
typedef struct ARC_DVector2 {
|
|
|
|
|
double x, y;
|
|
|
|
|
} ARC_DVector2;
|
|
|
|
|
|
|
|
|
|
#endif // ARC_MATH_VECTOR2_H_
|