bevy/crates/bevy_render/src/mesh/mod.rs

7 lines
94 B
Rust
Raw Normal View History

#[allow(clippy::module_inception)]
2020-07-17 01:47:51 +00:00
mod mesh;
mod vertex;
pub use mesh::*;
2020-07-26 19:10:18 +00:00
pub use vertex::*;