Simplify projet structure
This commit is contained in:
parent
44e027f76f
commit
0c1dabb99a
16 changed files with 279 additions and 1860 deletions
15
src/render/mod.rs
Normal file
15
src/render/mod.rs
Normal file
|
@ -0,0 +1,15 @@
|
|||
mod vertex;
|
||||
pub use vertex::Vertex;
|
||||
|
||||
mod camera;
|
||||
pub use camera::{
|
||||
Camera, CameraUniform, CameraController
|
||||
};
|
||||
|
||||
mod texture;
|
||||
pub use texture::Texture;
|
||||
|
||||
mod instance;
|
||||
pub use instance::{
|
||||
Instance, InstanceRaw
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue