pub type Vec2i = Vector2<i32>;
2D integer vector.
#[repr(C)]pub struct Vec2i { pub x: i32, pub y: i32, }
x: i32
y: i32