gba_agb_font_renderer 0.2.0

Bitmap font renderer for GBA/AGB
#![no_std]
#![cfg_attr(test, no_main)]
#![cfg_attr(test, feature(custom_test_frameworks))]
#![cfg_attr(test, reexport_test_harness_main = "test_main")]
#![cfg_attr(test, test_runner(agb::test_runner::test_runner))]

pub mod font;
pub mod renderer;
pub mod typewriter;

extern crate alloc;

pub mod prelude {
    pub use crate::font::full::*;
    pub use crate::font::printable::*;
    pub use crate::font::*;
    pub use crate::full_font;
    pub use crate::printable_font;
    pub use crate::renderer::*;
    pub use crate::typewriter::*;
}