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

11 lines
294 B
Rust
Raw Normal View History

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