/// A struct representing gravity
#[derive(Debug)]pubstructGravity{pub(crate)acceleration:f32,
}implGravity{/// Create a new [`Gravity`] instance
////// # Arguments
/// * `acceleration`: floating-point value of the acceleration
pubfnnew(acceleration:f32)->Self{Self{
acceleration,}}}