#![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};
pub use crate::{
render::{
BlinkConfig, CellSizing, CursorConfig, CursorStyle, FontFaces, FontSizing,
RasterConfig, Terminal, TerminalPlugin, TerminalReady, TerminalRenderConfig,
TerminalRenderScale, TerminalStats, TerminalSystems, TerminalTexture, TerminalTheme,
},
scene::{
CellOccupancy, CellPosition, CellSymbol, GridSize, StyleFlags, TerminalCell,
TerminalColor, TerminalSnapshot, TerminalStyle,
},
surface::{SurfaceUpdate, TerminalSurface},
};
}