Files
UnrealEngineUWP/Engine/Source/Programs/BaseTextureBuildWorker/BaseTextureBuildWorker.Target.cs
Zousar Shaker 2b1ee0faa6 Rename/move file(s) from UncompressedTextureBuildWorker to BaseTextureBuildWorker
[CL 16415109 by Zousar Shaker in ue5-main branch]
2021-05-21 01:15:30 -04:00

14 lines
385 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class UncompressedTextureBuildWorkerTarget : DerivedDataBuildWorkerTarget
{
public UncompressedTextureBuildWorkerTarget(TargetInfo Target) : base(Target)
{
LaunchModuleName = "UncompressedTextureBuildWorker";
}
}