From 40fd424205b23aa7e5958dcc1f833244364c805a Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Tue, 24 Sep 2024 21:01:10 +0100 Subject: [PATCH] Export the include_s3m and include_mod macros --- tracker/agb-tracker/src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tracker/agb-tracker/src/lib.rs b/tracker/agb-tracker/src/lib.rs index 8a5b5ed7..c957f21d 100644 --- a/tracker/agb-tracker/src/lib.rs +++ b/tracker/agb-tracker/src/lib.rs @@ -79,6 +79,14 @@ use agb_fixnum::Num; #[cfg(feature = "xm")] pub use agb_xm::include_xm; +/// Import an S3M file. Only available if you have the `xm` feature enabled (enabled by default). +#[cfg(feature = "xm")] +pub use agb_xm::include_s3m; + +/// Import a MOD file. Only available if you have the `xm` feature enabled (enabled by default). +#[cfg(feature = "xm")] +pub use agb_xm::include_mod; + /// Import a midi file. Only available if you have the `midi` feature enabled (enabled by default). /// This is currently experimental, and many types of MIDI file or MIDI features are not supported. ///