12 lines
212 B
C
12 lines
212 B
C
#ifndef ARC_MATH_VECTOR2_H_
|
|
#define ARC_MATH_VECTOR2_H_
|
|
|
|
typedef struct ARC_Vector2 {
|
|
float x, y;
|
|
} ARC_Vector2;
|
|
|
|
typedef struct ARC_DVector2 {
|
|
double x, y;
|
|
} ARC_DVector2;
|
|
|
|
#endif // ARC_MATH_VECTOR2_H_
|