mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-22 07:06:41 +11:00
8 lines
209 B
Rust
8 lines
209 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_xm_core::agb_xm_core(args.into()).into()
|
|
}
|