Hey, first of all, thanks for making this crate, it works great and is well documented.
I wanted to quickly share that using a buffered reader on the Files speeds loading up by a big amount, for me on windows at least.
So, for example this:
use std::io::BufReader;
...
let file = BufReader::new(File::open(f).expect("level file not found"));
instead of this:
let file = File::open(f).expect("level file not found");
Hey, first of all, thanks for making this crate, it works great and is well documented.
I wanted to quickly share that using a buffered reader on the
Files speeds loading up by a big amount, for me on windows at least.So, for example this:
instead of this: