Function cgl_rs::noise::shutdown

source ·
pub fn shutdown()
Expand description

Shuts down the noise library.

This function must be called when the noise library is no longer needed.

Example

cgl_rs::noise::init();
// Use noise functions here
cgl_rs::noise::shutdown();