hephae 0.7.2

A personalized, opinionated Bevy plugin that adds support for drawing and batching arbitrary vertices and indices.
Documentation
#![allow(internal_features)]
#![cfg_attr(any(docsrs, docsrs_dep), feature(rustdoc_internals))]
#![doc = include_str!("../README.md")]
#![cfg_attr(doc, deny(missing_docs))]

#[cfg(feature = "atlas")]
pub use hephae_atlas as atlas;
#[cfg(feature = "locale")]
pub use hephae_locale as locale;
pub use hephae_plugins::hephae;
pub use hephae_render as render;
#[cfg(feature = "text")]
pub use hephae_text as text;
#[cfg(feature = "ui")]
pub use hephae_ui as ui;
pub use hephae_utils as utils;

/// Common imports for [`hephae`](crate).
pub mod prelude {
    #[cfg(feature = "atlas")]
    pub use crate::atlas::prelude::*;
    #[cfg(feature = "locale")]
    pub use crate::locale::prelude::*;
    #[cfg(feature = "text")]
    pub use crate::text::prelude::*;
    #[cfg(feature = "ui")]
    pub use crate::ui::prelude::*;
    pub use crate::{hephae, render::prelude::*, utils::prelude::*};
}