├── .gitignore ├── LICENSE ├── README.md ├── src ├── CascLib.NET │ ├── .vscode │ │ └── launch.json │ ├── BlockTable │ │ ├── BlockTableEncoderType.cs │ │ ├── BlockTableEntry.cs │ │ └── BlockTableHeader.cs │ ├── CascBuildInfo.cs │ ├── CascConfig.cs │ ├── CascFileFrame.cs │ ├── CascFileInfo.cs │ ├── CascFileSpan.cs │ ├── CascFileStream.cs │ ├── CascKeyMappingTable.cs │ ├── CascLib.NET.csproj │ ├── CascRootHandler.cs │ ├── CascSpanHeader.cs │ ├── CascStorage.cs │ ├── RootHandlers │ │ └── TVFSRootHandler.cs │ └── Utility │ │ ├── DSVFile.cs │ │ ├── HexString.cs │ │ ├── IOExtensions.cs │ │ ├── Int16BE.cs │ │ ├── Int24BE.cs │ │ ├── Int32BE.cs │ │ ├── Wildcard.cs │ │ └── ZLIB.cs ├── ModernModellingWarfare │ ├── Assets │ │ ├── MaterialHandler.cs │ │ ├── ScriptableDefHandler.cs │ │ ├── XAnimDynamicBonesHandler.cs │ │ ├── XAnimHandler.cs │ │ ├── XAnimProceduralBonesHandler.cs │ │ ├── XModelDetailCollisionHandler.cs │ │ ├── XModelHandler.cs │ │ ├── XModelSurfsHandler.cs │ │ └── XPhysicsAssetHandler.cs │ ├── FastFileStream.cs │ ├── Global.cs │ ├── GlobalSuppressions.cs │ ├── MaterialCacheHandler.cs │ ├── ModernModellingWarfare.csproj │ ├── ModernModellingWarfare.sln │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Shared │ │ ├── DObjAnimMat.cs │ │ ├── GfxPackedUV.cs │ │ ├── GfxQTangent.cs │ │ ├── GfxStreamFace.cs │ │ ├── ScriptStringList.cs │ │ ├── XAsset.cs │ │ ├── XAssetList.cs │ │ └── XQuat.cs │ ├── XModelParser.cs │ ├── XPAKPackage.cs │ ├── Zone.cs │ └── modelling.ico ├── PhilLibX.Imaging.DirectXTex │ ├── AssemblyInfo.cpp │ ├── PhilLibX.Imaging.DirectXTex.vcxproj │ ├── PhilLibX.Imaging.DirectXTex.vcxproj.filters │ ├── Resource.h │ ├── ScratchImage.cpp │ ├── ScratchImage.h │ ├── ScratchImageDimension.cpp │ ├── ScratchImageDimension.h │ ├── ScratchImageException.cpp │ ├── ScratchImageException.h │ ├── ScratchImageFileFormat.cpp │ ├── ScratchImageFileFormat.h │ ├── ScratchImageFlags.cpp │ ├── ScratchImageFlags.h │ ├── ScratchImageFormat.cpp │ ├── ScratchImageFormat.h │ ├── ScratchImageHelper.cpp │ ├── ScratchImageHelper.h │ ├── ScratchImageMetadata.cpp │ ├── ScratchImageMetadata.h │ ├── app.ico │ ├── app.rc │ ├── packages.config │ ├── pch.cpp │ └── pch.h └── PhilLibX │ ├── BytePattern.cs │ ├── Compression │ ├── CompressionException.cs │ ├── LZ4.cs │ ├── LZO.cs │ ├── Oodle.cs │ ├── OodleCheckCRC.cs │ ├── OodleCompressor.cs │ ├── OodleFuzzSafe.cs │ ├── OodleLevel.cs │ ├── OodleThreading.cs │ ├── OodleVerbosity.cs │ ├── ZLIB.cs │ └── ZStandard.cs │ ├── IO │ ├── BinaryReaderExtensions.cs │ ├── BinaryWriterExtensions.cs │ ├── ProcessStream.cs │ └── StreamExtensions.cs │ ├── Interop.cs │ ├── Media3D │ ├── Animation.cs │ ├── AnimationBone.cs │ ├── AnimationBoneSampler.cs │ ├── AnimationBoneSamplerLayer.cs │ ├── AnimationFrame.cs │ ├── AnimationNotification.cs │ ├── AnimationSampler.cs │ ├── AnimationSamplerLayer.cs │ ├── AnimationTransformSpace.cs │ ├── AnimationTransformType.cs │ ├── FileTranslators │ │ ├── CoDXAsset │ │ │ ├── BinaryTokenReader.cs │ │ │ ├── BinaryTokenWriter.cs │ │ │ ├── ExportTokenReader.cs │ │ │ ├── ExportTokenWriter.cs │ │ │ ├── Token.cs │ │ │ ├── TokenData.cs │ │ │ ├── TokenDataBoneInfo.cs │ │ │ ├── TokenDataBoneWeight.cs │ │ │ ├── TokenDataFloat.cs │ │ │ ├── TokenDataInt.cs │ │ │ ├── TokenDataTri.cs │ │ │ ├── TokenDataType.cs │ │ │ ├── TokenDataUInt.cs │ │ │ ├── TokenDataUIntString.cs │ │ │ ├── TokenDataUIntStringX3.cs │ │ │ ├── TokenDataUVSet.cs │ │ │ ├── TokenDataVector2.cs │ │ │ ├── TokenDataVector3.cs │ │ │ ├── TokenDataVector4.cs │ │ │ ├── TokenReader.cs │ │ │ └── TokenWriter.cs │ │ ├── CoDXModelTranslator.cs │ │ ├── SEAnimTranslator.cs │ │ ├── SEModelTranslator.cs │ │ └── WavefrontOBJTranslator.cs │ ├── IAnimationSamplerSolver.cs │ ├── IMedia3DTranslator.cs │ ├── Material.cs │ ├── Mesh.cs │ ├── Model.cs │ ├── ModelBone.cs │ ├── ModelBoneTransform.cs │ └── VertexAttributeCollection.cs │ ├── Native │ ├── X64LZ4.dll │ ├── X64LZOkay.dll │ ├── X64MiniZ.dll │ ├── X64ZStandard.dll │ ├── X86LZ4.dll │ ├── X86LZOkay.dll │ ├── X86MiniZ.dll │ └── X86ZStandard.dll │ ├── Numerics │ └── QuaternionHelper.cs │ ├── Pattern.cs │ ├── PhilLibX.csproj │ ├── Printer.cs │ └── Wildcard.cs └── third_party_licenses ├── LZ4License ├── LZOkayLicense ├── MINIZLicense └── ZSTDLicense /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/README.md -------------------------------------------------------------------------------- /src/CascLib.NET/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/.vscode/launch.json -------------------------------------------------------------------------------- /src/CascLib.NET/BlockTable/BlockTableEncoderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/BlockTable/BlockTableEncoderType.cs -------------------------------------------------------------------------------- /src/CascLib.NET/BlockTable/BlockTableEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/BlockTable/BlockTableEntry.cs -------------------------------------------------------------------------------- /src/CascLib.NET/BlockTable/BlockTableHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/BlockTable/BlockTableHeader.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascBuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascBuildInfo.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascConfig.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascFileFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascFileFrame.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascFileInfo.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascFileSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascFileSpan.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascFileStream.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascKeyMappingTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascKeyMappingTable.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascLib.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascLib.NET.csproj -------------------------------------------------------------------------------- /src/CascLib.NET/CascRootHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascRootHandler.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascSpanHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascSpanHeader.cs -------------------------------------------------------------------------------- /src/CascLib.NET/CascStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/CascStorage.cs -------------------------------------------------------------------------------- /src/CascLib.NET/RootHandlers/TVFSRootHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/RootHandlers/TVFSRootHandler.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/DSVFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/DSVFile.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/HexString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/HexString.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/IOExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/IOExtensions.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/Int16BE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/Int16BE.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/Int24BE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/Int24BE.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/Int32BE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/Int32BE.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/Wildcard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/Wildcard.cs -------------------------------------------------------------------------------- /src/CascLib.NET/Utility/ZLIB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/CascLib.NET/Utility/ZLIB.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/MaterialHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/MaterialHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/ScriptableDefHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/ScriptableDefHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/XAnimDynamicBonesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/XAnimDynamicBonesHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/XAnimHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/XAnimHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/XAnimProceduralBonesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/XAnimProceduralBonesHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/XModelDetailCollisionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/XModelDetailCollisionHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/XModelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/XModelHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/XModelSurfsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/XModelSurfsHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Assets/XPhysicsAssetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Assets/XPhysicsAssetHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/FastFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/FastFileStream.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Global.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/MaterialCacheHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/MaterialCacheHandler.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/ModernModellingWarfare.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/ModernModellingWarfare.csproj -------------------------------------------------------------------------------- /src/ModernModellingWarfare/ModernModellingWarfare.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/ModernModellingWarfare.sln -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Program.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/DObjAnimMat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/DObjAnimMat.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/GfxPackedUV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/GfxPackedUV.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/GfxQTangent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/GfxQTangent.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/GfxStreamFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/GfxStreamFace.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/ScriptStringList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/ScriptStringList.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/XAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/XAsset.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/XAssetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/XAssetList.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Shared/XQuat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Shared/XQuat.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/XModelParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/XModelParser.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/XPAKPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/XPAKPackage.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/Zone.cs -------------------------------------------------------------------------------- /src/ModernModellingWarfare/modelling.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/ModernModellingWarfare/modelling.ico -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/AssemblyInfo.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/PhilLibX.Imaging.DirectXTex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/PhilLibX.Imaging.DirectXTex.vcxproj -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/PhilLibX.Imaging.DirectXTex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/PhilLibX.Imaging.DirectXTex.vcxproj.filters -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/Resource.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImage.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImage.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageDimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageDimension.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageDimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageDimension.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageException.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageException.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageFileFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageFileFormat.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageFileFormat.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageFlags.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageFlags.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageFormat.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageFormat.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageHelper.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageHelper.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageMetadata.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/ScratchImageMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/ScratchImageMetadata.h -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/app.ico -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/app.rc -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/packages.config -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/pch.cpp -------------------------------------------------------------------------------- /src/PhilLibX.Imaging.DirectXTex/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX.Imaging.DirectXTex/pch.h -------------------------------------------------------------------------------- /src/PhilLibX/BytePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/BytePattern.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/CompressionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/CompressionException.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/LZ4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/LZ4.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/LZO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/LZO.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/Oodle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/Oodle.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/OodleCheckCRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/OodleCheckCRC.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/OodleCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/OodleCompressor.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/OodleFuzzSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/OodleFuzzSafe.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/OodleLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/OodleLevel.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/OodleThreading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/OodleThreading.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/OodleVerbosity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/OodleVerbosity.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/ZLIB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/ZLIB.cs -------------------------------------------------------------------------------- /src/PhilLibX/Compression/ZStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Compression/ZStandard.cs -------------------------------------------------------------------------------- /src/PhilLibX/IO/BinaryReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/IO/BinaryReaderExtensions.cs -------------------------------------------------------------------------------- /src/PhilLibX/IO/BinaryWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/IO/BinaryWriterExtensions.cs -------------------------------------------------------------------------------- /src/PhilLibX/IO/ProcessStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/IO/ProcessStream.cs -------------------------------------------------------------------------------- /src/PhilLibX/IO/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/IO/StreamExtensions.cs -------------------------------------------------------------------------------- /src/PhilLibX/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Interop.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/Animation.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationBone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationBone.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationBoneSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationBoneSampler.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationBoneSamplerLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationBoneSamplerLayer.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationFrame.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationNotification.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationSampler.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationSamplerLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationSamplerLayer.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationTransformSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationTransformSpace.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/AnimationTransformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/AnimationTransformType.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/BinaryTokenReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/BinaryTokenReader.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/BinaryTokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/BinaryTokenWriter.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/ExportTokenReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/ExportTokenReader.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/ExportTokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/ExportTokenWriter.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/Token.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenData.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataBoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataBoneInfo.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataBoneWeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataBoneWeight.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataFloat.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataInt.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataTri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataTri.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataType.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUInt.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUIntString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUIntString.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUIntStringX3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUIntStringX3.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUVSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataUVSet.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataVector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataVector2.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataVector3.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataVector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenDataVector4.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenReader.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXAsset/TokenWriter.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/CoDXModelTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/CoDXModelTranslator.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/SEAnimTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/SEAnimTranslator.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/SEModelTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/SEModelTranslator.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/FileTranslators/WavefrontOBJTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/FileTranslators/WavefrontOBJTranslator.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/IAnimationSamplerSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/IAnimationSamplerSolver.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/IMedia3DTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/IMedia3DTranslator.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/Material.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/Mesh.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/Model.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/ModelBone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/ModelBone.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/ModelBoneTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/ModelBoneTransform.cs -------------------------------------------------------------------------------- /src/PhilLibX/Media3D/VertexAttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Media3D/VertexAttributeCollection.cs -------------------------------------------------------------------------------- /src/PhilLibX/Native/X64LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X64LZ4.dll -------------------------------------------------------------------------------- /src/PhilLibX/Native/X64LZOkay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X64LZOkay.dll -------------------------------------------------------------------------------- /src/PhilLibX/Native/X64MiniZ.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X64MiniZ.dll -------------------------------------------------------------------------------- /src/PhilLibX/Native/X64ZStandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X64ZStandard.dll -------------------------------------------------------------------------------- /src/PhilLibX/Native/X86LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X86LZ4.dll -------------------------------------------------------------------------------- /src/PhilLibX/Native/X86LZOkay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X86LZOkay.dll -------------------------------------------------------------------------------- /src/PhilLibX/Native/X86MiniZ.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X86MiniZ.dll -------------------------------------------------------------------------------- /src/PhilLibX/Native/X86ZStandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Native/X86ZStandard.dll -------------------------------------------------------------------------------- /src/PhilLibX/Numerics/QuaternionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Numerics/QuaternionHelper.cs -------------------------------------------------------------------------------- /src/PhilLibX/Pattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Pattern.cs -------------------------------------------------------------------------------- /src/PhilLibX/PhilLibX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/PhilLibX.csproj -------------------------------------------------------------------------------- /src/PhilLibX/Printer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Printer.cs -------------------------------------------------------------------------------- /src/PhilLibX/Wildcard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/src/PhilLibX/Wildcard.cs -------------------------------------------------------------------------------- /third_party_licenses/LZ4License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/third_party_licenses/LZ4License -------------------------------------------------------------------------------- /third_party_licenses/LZOkayLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/third_party_licenses/LZOkayLicense -------------------------------------------------------------------------------- /third_party_licenses/MINIZLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/third_party_licenses/MINIZLicense -------------------------------------------------------------------------------- /third_party_licenses/ZSTDLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/ModernModellingWarfare/HEAD/third_party_licenses/ZSTDLicense --------------------------------------------------------------------------------