fluffl 0.0.5

A cross-platform multimedia layer that exposes opengl,sockets,and audio utilities for desktop and browser
Documentation
#[cfg(not(all(target_family = "wasm", not(target_os = "wasi"))))]
#[path = "./io/desktop_io.rs"]
pub mod io_util;

#[cfg(all(target_family = "wasm", not(target_os = "wasi")))]
#[path = "./io/web_io.rs"]
pub mod io_util;

use crate::FlufflError;
pub use io_util::*;

#[macro_export]
macro_rules! load_file {
    ( $argument:expr ) => {
        load_file($argument).await
    };
    ( $argument:ident ) => {
        load_file($argument).await
    };
}