#![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};
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,
};
}