1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Two-way coupling between nphysics bodies and salva fluids.

#[cfg(feature = "nphysics")]
pub use self::collider_coupling_manager::{
    ColliderCouplingManager, ColliderCouplingSet, CouplingMethod,
};
pub use self::coupling_manager::CouplingManager;

#[cfg(feature = "nphysics")]
mod collider_coupling_manager;
mod coupling_manager;