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("./examples/songs/TEST-FILE.m8s").unwrap();
let song = Song::read(&mut f).unwrap();
dbg!(song);