C# Class CachedQuickLz.CachedQlz

Show file Open project: LunaMultiplayer/CachedQuickLz

Public Methods

Method Description
Decompress ( Array &data, int &length ) : void

Decompresses the given array and return the contents into the data parameter. Caution! As the arrays are cached the size of it might be bigger than it's contents. Use length to check the array length

Method Details

Decompress() public static method

Decompresses the given array and return the contents into the data parameter. Caution! As the arrays are cached the size of it might be bigger than it's contents. Use length to check the array length
public static Decompress ( Array &data, int &length ) : void
data Array Data to decompress. The results will be written into this array
length int Length of the decompressed array
return void