use crate::graphics::Vertex; pub struct UI { } impl UI { pub fn new() -> Self { Self {} } pub fn render(&self, vertices: &mut Vec, indices: &mut Vec) { } }