jtmm2/inc/vec.h

10 lines
97 B
C

#pragma once
typedef struct Vec {
int x, y;
} Vec;
typedef struct VecF {
float x, y;
} VecF;