#include "vec2i.h" struct sw_vec2i sw_vec2i(int x, int y) { struct sw_vec2i vec; vec.x = x; vec.y = y; return vec; }