jtmm2/inc/vec.h

10 lines
97 B
C
Raw Normal View History

2021-12-15 23:43:04 +01:00
#pragma once
typedef struct Vec {
int x, y;
} Vec;
typedef struct VecF {
float x, y;
} VecF;