Crate m8_files

source ·
Expand description

This library lets you parse Dirtywave M8 data

See, in particular, the read method available on:

E.g.:

use m8_files::*;

let mut f = std::fs::File::open(&args[1]).unwrap();
let song = Song::read(&mut f)?;
dbg!(song);

Structs

Enums