#ifndef MGL_VEC_H #define MGL_VEC_H typedef struct { float x, y; } mgl_vec2f; typedef struct { int x, y; } mgl_vec2i; #endif /* MGL_VEC_H */