breakhack/src/vector2d.h

10 lines
124 B
C

#ifndef VECTOR2D_H_
#define VECTOR2D_H_
typedef struct Vector2d_t {
float x;
float y;
} Vector2d;
#endif // VECTOR2D_H_