aboutsummaryrefslogtreecommitdiff
path: root/include/mgl/system/vec.h
blob: 8b87376a3bcb18056c5b9fecdf0aa090f16de183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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 */