//! Re-exports all object types. Kits, patterns, sounds, globals and settings are called objects.
//!
//! To know more about the objects, please check their own module documentation.
/// Holds the global object structure.
/// Holds the kit object structure.
/// Holds the pattern object structure.
/// Holds the settings object structure.
/// Holds the sound object structure.
/// Types which are common to all object types.
pub use Global;
pub use Kit;
pub use Pattern;
pub use Settings;
pub use Sound;