1pub mod greedy; 2pub mod segment; 3pub mod terrain; 4 5use crate::render::Mesh; 6 7pub type MeshGen<V, T, S, R> = (Mesh<V>, Mesh<T>, Mesh<S>, R);