veloren/voxygen/src/mesh/mod.rs
Forest Anderson 993388e56a Ran fmt on codebase
Former-commit-id: 7fecffa1dc66fffba4f07d45fb80960dc5178f4f
2019-04-29 20:37:19 +00:00

14 lines
246 B
Rust

pub mod segment;
pub mod terrain;
mod vol;
// Crate
use crate::render::{self, Mesh};
pub trait Meshable {
type Pipeline: render::Pipeline;
type Supplement;
fn generate_mesh(&self, supp: Self::Supplement) -> Mesh<Self::Pipeline>;
}