fluffl 0.0.5

A cross-platform multimedia layer that exposes opengl,sockets,and audio utilities for desktop and browser
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(not(all(target_family = "wasm", not(target_os = "wasi"))))]
#[path = "./time/desktop_time.rs"]
pub mod time_util;

#[cfg(all(target_family = "wasm", not(target_os = "wasi")))]
#[path = "./time/web_time.rs"]
pub mod time_util;


pub use time_util::*;