//! Texture module prelude
//!
//! Convenient imports for magnetic textures and topological structures.
//!
//! ```rust
//! use spintronics::texture::prelude::*;
//! ```
// Skyrmions and lattices
// DMI (Dzyaloshinskii-Moriya Interaction)
pub use ;
// Domain walls
pub use ;
// Hopfions (3D topological solitons)
pub use ;
pub use ;
// Topological charge calculations
pub use ;
// Type aliases for convenience
/// Dzyaloshinskii-Moriya Interaction (DMI)
pub type DMI = DmiParameters;
/// Domain Wall (DW)
pub type DW = DomainWall;
/// Skyrmion (Sk)
pub type Sk = Skyrmion;