agb/examples/the-hat-chooses-the-wizard/src/main.rs

11 lines
294 B
Rust
Raw Normal View History

2022-01-01 12:09:21 +00:00
#![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))]
2022-01-16 21:44:17 +00:00
#[agb::entry]
2022-12-01 17:16:53 +00:00
fn entry(mut gba: agb::Gba) -> ! {
the_hat_chooses_the_wizard::main(gba);
}