mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-15 05:14:20 +00:00
28 lines
448 B
Rust
28 lines
448 B
Rust
#[path = "DrawModel.rs"]
|
|
mod _DrawModel;
|
|
pub use self::_DrawModel::*;
|
|
|
|
#[path = "Instance.rs"]
|
|
mod _Instance;
|
|
pub use self::_Instance::*;
|
|
|
|
#[path = "Material.rs"]
|
|
mod _Material;
|
|
pub use self::_Material::*;
|
|
|
|
#[path = "Model.rs"]
|
|
mod _Model;
|
|
pub use self::_Model::*;
|
|
|
|
#[path = "Mesh.rs"]
|
|
mod _Mesh;
|
|
pub use self::_Mesh::*;
|
|
|
|
#[path = "Texture.rs"]
|
|
mod _Texture;
|
|
pub use self::_Texture::*;
|
|
|
|
#[path = "Vertex.rs"]
|
|
mod _Vertex;
|
|
pub use self::_Vertex::*;
|