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