#![doc = include_str!("../README.md")]
pub mod render;
pub mod scene;
pub mod surface;
pub use bevy;
pub mod prelude {
pub use bevy::text::{FontHinting, FontSource};
#[cfg(feature = "3d")]
pub use crate::render::TerminalWorldQuad;
pub use crate::{
render::{
BlinkConfig, CellSizing, CursorConfig, CursorStyle, FontFaces, FontSizing,
RasterConfig, SmolStr, Terminal, TerminalFonts, TerminalPlugin, TerminalReady,
TerminalRemeasured, TerminalRenderConfig, TerminalRenderScale, TerminalStats,
TerminalSystems, TerminalTexture, TerminalTheme, font_family,
},
scene::{
CellOccupancy, CellPosition, CellSymbol, GridSize, StyleFlags, TerminalCell,
TerminalColor, TerminalSnapshot, TerminalStyle,
},
surface::{SurfaceUpdate, TerminalSurface},
};
}