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

typedef struct {
    int x, y;
} vec2i;

#endif /* VEC2_H */