pub type Vec2i = Vec2<i32>;
A 2-dimensional signed integer vector type
pub struct Vec2i { pub x: i32, pub y: i32, }
x: i32
y: i32