rantz_suite 1.3.0

A combined suite of tools provided by Rantz for use with the Bevy game engine.
Documentation
#[cfg(feature = "plugin")]
mod plugin;
#[cfg(feature = "plugin")]
pub use plugin::RantzSuitePlugin;

#[cfg(feature = "spatial2d")]
pub mod spatial2d {
    pub use rantz_spatial2d::prelude::*;
}

#[cfg(feature = "random")]
pub mod random {
    pub use rantz_random::{prelude::*, seed};
}

#[cfg(feature = "camera2d")]
pub mod camera2d {
    pub use rantz_camera2d::prelude::*;
}

#[cfg(feature = "proto")]
pub mod proto {
    pub use rantz_proto::prelude::*;
}

#[cfg(feature = "cereal")]
pub mod cereal {
    pub use rantz_cereal::prelude::*;
}