mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-19 07:14:19 +00:00
Update project
This commit is contained in:
27
Source/Render/mod.rs
Normal file
27
Source/Render/mod.rs
Normal file
@ -0,0 +1,27 @@
|
||||
#[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::*;
|
Reference in New Issue
Block a user