mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
9 lines
213 B
Rust
9 lines
213 B
Rust
use proc_macro::TokenStream;
|
|
use proc_macro_error::proc_macro_error;
|
|
|
|
#[proc_macro_error]
|
|
#[proc_macro]
|
|
pub fn include_xm(args: TokenStream) -> TokenStream {
|
|
agb_midi_core::agb_midi_core(args.into()).into()
|
|
}
|