summaryrefslogtreecommitdiff
path: root/include/vector.h
blob: fb00384857b71482d79eeb5975e2acd0789767c6 (plain)
1
2
3
4
5
6
7
struct vector2i {
    int x, y;
};

struct vector2ui {
    unsigned int x, y;
};