MaxOhn / rosu-pp

PP and star calculation for all osu! gamemodes
MIT License
84 stars 39 forks source link

from bytes #10

Closed minisbett closed 2 years ago

minisbett commented 2 years ago

Why is there no option to parse a beatmap from bytes instead of a file?? so much more useful in so many scenarios

MaxOhn commented 2 years ago

There is Beatmap::parse which you can give anything that implements std::io::Read or the analogous async trait so you can give it bytes.

minisbett commented 2 years ago

oh that's good to know, thanks for telling me