Files
wgpu-renderer/Source/lib.rs
2022-03-31 19:52:27 -03:00

16 lines
240 B
Rust

#![allow(non_snake_case)]
#![allow(unused_imports)]
pub mod Camera;
pub mod Color;
pub mod Render;
pub mod Shader;
#[path = "Runtime.rs"]
mod _Runtime;
pub use self::_Runtime::*;
#[path = "State.rs"]
mod _State;
pub use self::_State::*;