ombre 0.6.7

Shadowy game and graphics library for Rust
Documentation
#![allow(clippy::collapsible_else_if)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::single_match)]
#![allow(clippy::collapsible_match)]
#![allow(clippy::identity_op)]
#![warn(clippy::unwrap_used)]
pub mod bytes;
pub mod collections;
pub mod gfx;
pub mod logger;
pub mod math;
pub mod platform;
pub mod runtime;

/// Crate prelude.
pub mod prelude {
    pub use super::bytes;
    pub use super::gfx;
    pub use super::gfx::*;
    pub use super::math::{Rect, Size, Transform3D, Vector3D};
    pub use super::runtime::RuntimeRenderer;
    pub use super::{logger, platform, runtime};
}