1//! # WGPU NoBoiler
2//!
3//! Builder patter for wgpu and winit
4//!
5//! heavily based on the [WGPU-Tutorial](https://sotrh.github.io/learn-wgpu/)
67pub mod app;
8pub mod buffer;
9pub mod render_pass;
10pub mod render_pipeline;
11pub mod vertex;
1213extern crate core;