breakhack/src/vector2d.h

10 lines
124 B
C
Raw Normal View History

2018-02-03 23:39:49 +01:00
#ifndef VECTOR2D_H_
#define VECTOR2D_H_
typedef struct Vector2d_t {
float x;
float y;
} Vector2d;
#endif // VECTOR2D_H_