agb_eb_ext 0.25.0

AGB Extension methods
#![no_std]
#![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 backgrounds;
pub mod button_highlight;
pub mod direction;
pub mod gfx;
pub mod menu_cursor;
pub mod rng;
pub mod scrolling_cursor;
pub mod transitions;

extern crate alloc;

pub const TILE_SIZE: i32 = 8;

#[allow(clippy::empty_loop)]
#[cfg(test)]
#[agb::entry]
fn main(_gba: agb::Gba) -> ! {
    loop {}
}