summaryrefslogtreecommitdiff
path: root/src/vec.h
blob: a9832565f2c795686ba05dd3cc8ad9d95bafff40 (plain)
1
2
3
4
5
6
7
#ifndef VEC_H
#define VEC_H
struct Vec2{
    int x;
    int y;
};
#endif // VEC_H