bevy_terminal 0.3.0

A terminal scene model and renderer built on Bevy text, UI, and the render world
Documentation
#![doc = include_str!("../README.md")]

mod color;
mod renderer;
mod scene;
mod surface;

pub use bevy::text::{FontHinting, FontSource};
pub use color::TerminalTheme;
pub use renderer::{
    BlinkConfig, CursorConfig, CursorStyle, FontFaces, FontSizing, Terminal, TerminalPlugin,
    TerminalReady, TerminalRenderConfig, TerminalRenderScale, TerminalStats, TerminalSystems,
    TerminalTexture,
};
pub use scene::{
    CellOccupancy, CellPosition, CellSymbol, GridSize, StyleFlags, TerminalCell, TerminalColor,
    TerminalSnapshot, TerminalStyle,
};
pub use surface::{SurfaceMetrics, SurfaceUpdate, TerminalSurface};

/// Convenient imports for applications using `bevy_terminal`.
pub mod prelude {
    pub use crate::{
        BlinkConfig, CellOccupancy, CellPosition, CursorConfig, CursorStyle, FontFaces, FontSizing,
        GridSize, StyleFlags, Terminal, TerminalCell, TerminalColor, TerminalPlugin, TerminalReady,
        TerminalRenderConfig, TerminalRenderScale, TerminalSnapshot, TerminalStats, TerminalStyle,
        TerminalSurface, TerminalTexture, TerminalTheme,
    };
}