mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-15 13:24:20 +00:00
16 lines
240 B
Rust
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::*;
|