mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-15 05:14:20 +00:00
17 lines
248 B
Rust
17 lines
248 B
Rust
#![allow(non_snake_case)]
|
|
|
|
pub mod Camera;
|
|
pub mod Render;
|
|
|
|
#[path = "Display.rs"]
|
|
mod _Display;
|
|
pub use self::_Display::*;
|
|
|
|
#[path = "Runtime.rs"]
|
|
mod _Runtime;
|
|
pub use self::_Runtime::*;
|
|
|
|
#[path = "State.rs"]
|
|
mod _State;
|
|
pub use self::_State::*;
|