bgi_stroked_fonts/
lib.rs

1//! BGI Stroked Font converted from [SDL_bgi](https://sdl-bgi.sourceforge.io/).
2
3#![forbid(unsafe_code)]
4
5#[cfg(feature = "bold")]
6pub mod bold;
7
8#[cfg(feature = "euro")]
9pub mod euro;
10
11#[cfg(feature = "goth")]
12pub mod goth;
13
14#[cfg(feature = "lcom")]
15pub mod lcom;
16
17#[cfg(feature = "litt")]
18pub mod litt;
19
20#[cfg(feature = "sans")]
21pub mod sans;
22
23#[cfg(feature = "scri")]
24pub mod scri;
25
26#[cfg(feature = "simp")]
27pub mod simp;
28
29#[cfg(feature = "trip")]
30pub mod trip;
31
32#[cfg(feature = "tscr")]
33pub mod tscr;