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. ///