jtmm2/inc/vec.h

10 lines
72 B
C

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