Created package-info.java for mpq_bytebuf

This commit is contained in:
Collin Smith 2021-08-29 23:46:10 -07:00
parent c744ac149b
commit 0e5fc03f31

View File

@ -0,0 +1,8 @@
/**
* Implementation of MPQ archive decoding backed by netty ByteBuf and wrapping a
* mapped byte buffer. Should be a bit faster than original implementation using
* java nio ByteBuffer and byte[], but mainly ByteBuf provides more seamless
* decoding for certain raw files and a much easier interface to work with for
* file decoding. Intended successor to com.riiablo.mpq
*/
package com.riiablo.mpq_bytebuf;