pub type Vec2i = Vec2<i64>;
Type for representing a 2D vector with i64 as fields.
struct Vec2i { pub x: i64, pub y: i64, }
x: i64
y: i64