aboutsummaryrefslogtreecommitdiff
path: root/include/vec2.h
blob: 3e33cfb8571091c554d041a88686ed4b3398d209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef VEC2_H
#define VEC2_H

typedef struct {
    int x, y;
} vec2i;

typedef struct {
    float x, y;
} vec2f;

#endif /* VEC2_H */