agb/examples/the-purple-night/src/main.rs

11 lines
284 B
Rust
Raw Normal View History

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