pub type Vector2i = Vector2<i32>;
export Vector2 as Vector2i
struct Vector2i { pub x: i32, pub y: i32, }
x: i32
X coordinate of the vector.
y: i32
Y coordinate of the vector.