veloren/voxygen/src/mesh/mod.rs
2019-01-23 22:21:47 +00:00

16 lines
248 B
Rust

pub mod segment;
pub mod terrain;
// 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>;
}