Update project

This commit is contained in:
Werner
2021-11-08 12:17:40 -03:00
parent c5dbf96177
commit 15e8989bef
30 changed files with 873 additions and 851 deletions

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::*;