nightshade 0.14.1

A cross-platform data-oriented game engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod font_engine;
pub mod text_cache;

pub use self::font_engine::{DEFAULT_FONT_DATA, DEFAULT_MONO_FONT_DATA, FontEngine};
pub use self::text_cache::*;

#[derive(Default)]
pub struct TextState {
    pub cache: TextCache,
    pub font_engine: FontEngine,
}