Files
wgpu-renderer/Source/lib.rs
2021-11-09 21:07:16 -03:00

15 lines
214 B
Rust

#![allow(non_snake_case)]
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::*;