├── .gitignore ├── BLPExample ├── BLPExample.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── LICENSE ├── README.md ├── SereniaBLPLib.sln └── SereniaBLPLib ├── BlpFile.cs ├── DXTDecompression.cs └── SereniaBLPLib.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/.gitignore -------------------------------------------------------------------------------- /BLPExample/BLPExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/BLPExample.csproj -------------------------------------------------------------------------------- /BLPExample/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Form1.Designer.cs -------------------------------------------------------------------------------- /BLPExample/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Form1.cs -------------------------------------------------------------------------------- /BLPExample/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Form1.resx -------------------------------------------------------------------------------- /BLPExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Program.cs -------------------------------------------------------------------------------- /BLPExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BLPExample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BLPExample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Properties/Resources.resx -------------------------------------------------------------------------------- /BLPExample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BLPExample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/BLPExample/Properties/Settings.settings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/README.md -------------------------------------------------------------------------------- /SereniaBLPLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/SereniaBLPLib.sln -------------------------------------------------------------------------------- /SereniaBLPLib/BlpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/SereniaBLPLib/BlpFile.cs -------------------------------------------------------------------------------- /SereniaBLPLib/DXTDecompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/SereniaBLPLib/DXTDecompression.cs -------------------------------------------------------------------------------- /SereniaBLPLib/SereniaBLPLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/SereniaBLPLib/HEAD/SereniaBLPLib/SereniaBLPLib.csproj --------------------------------------------------------------------------------