├── .gitattributes ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── .gitmodules ├── WorldMapCompiler.sln └── WorldMapCompiler ├── BLP ├── BlpFile.cs └── DXTDecompression.cs ├── CASCDBCProvider.cs ├── Program.cs ├── WorldMapCompiler.csproj └── settings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/.gitmodules -------------------------------------------------------------------------------- /WorldMapCompiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/WorldMapCompiler.sln -------------------------------------------------------------------------------- /WorldMapCompiler/BLP/BlpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/WorldMapCompiler/BLP/BlpFile.cs -------------------------------------------------------------------------------- /WorldMapCompiler/BLP/DXTDecompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/WorldMapCompiler/BLP/DXTDecompression.cs -------------------------------------------------------------------------------- /WorldMapCompiler/CASCDBCProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/WorldMapCompiler/CASCDBCProvider.cs -------------------------------------------------------------------------------- /WorldMapCompiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/WorldMapCompiler/Program.cs -------------------------------------------------------------------------------- /WorldMapCompiler/WorldMapCompiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/WorldMapCompiler/WorldMapCompiler.csproj -------------------------------------------------------------------------------- /WorldMapCompiler/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marlamin/WorldMapCompiler/HEAD/WorldMapCompiler/settings.json --------------------------------------------------------------------------------