1
0
Fork 0

Rename engine to window

This commit is contained in:
Florian RICHER 2022-06-16 19:43:02 +02:00
parent 96d1e2441f
commit c2a32a3be6
4 changed files with 78 additions and 78 deletions

View file

@ -16,6 +16,9 @@ use wgpu::{Device, Queue};
mod mesh;
pub use mesh::Mesh;
mod window;
pub use window::Window;
pub trait Renderable {
fn initialize(&mut self, device: &Device);
fn update_instances(&mut self, queue: &Queue);