This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| A simple script to show how to decompress LBP TEX files used for images/icons. | |
| This assumes that the file will be DDS, which may not always be true. Some files have been known to use JPEG/PNG | |
| */ | |
| package main | |
| import ( | |
| "bytes" | |
| "compress/zlib" | |
| "encoding/binary" |