1
0
Fork 0

Simplify projet structure

This commit is contained in:
Florian RICHER 2022-06-14 22:39:48 +02:00
parent 44e027f76f
commit 0c1dabb99a
16 changed files with 279 additions and 1860 deletions

15
src/render/mod.rs Normal file
View 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
};