devwckd / rust-craft

A collection of crates to make minecraft development (client, server) with rust possible.
MIT License
18 stars 0 forks source link

Change SizedByteArray to Vec<T>/Vec<u8> #19

Closed devwckd closed 1 year ago

devwckd commented 1 year ago

reverts #17. It's better to use the type Vec as the sized collection type because it's the norm, "unsized" (aka read till the end) collections are the exception.