Files
2020-07-29 13:19:45 +05:00

16 lines
291 B
C#

using UnrealBuildTool;
using System.Collections.Generic;
public class URATarget : TargetRules
{
public URATarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "URA" } );
}
}