pub type Vector2D = Vec2;
2D Vector for UI coordinates, texture coordinates, etc.
#[repr(C)]pub struct Vector2D { pub x: f32, pub y: f32, }
x: f32
y: f32