bevy_mod_gba 0.1.1

Platform support for the GameBoy Advance with the Bevy game engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A bare-bones example showing minimal setup.

#![no_std]
#![no_main]

use bevy::prelude::*;
use bevy_mod_gba::prelude::*;

/// Main entry point.
#[expect(unsafe_code)]
#[unsafe(export_name = "main")]
pub extern "C" fn main() -> ! {
    App::new().add_plugins(AgbPlugin).run();

    loop {}
}