hexga_io 0.0.11-beta.53

io file abstraction based on serde to allow loading/saving/converting bytes with a custom extension
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// based on [miniquad::fs](https://github.com/not-fl3/miniquad/blob/master/src/fs.rs)
use super::*;

#[cfg(target_arch = "wasm32")]
pub(crate) mod wasm;
#[cfg(target_arch = "wasm32")]
pub(crate) use wasm::*;

#[cfg(not(any(target_arch = "wasm32")))]
pub(crate) mod desktop;
#[cfg(not(any(target_arch = "wasm32")))]
pub(crate) use desktop::*;