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