Files
UnrealEngineUWP/Engine/Build/Target.cs.template
Marcus Wassmer 676f390512 Local copyright updates
#rb none

[CL 4681318 by Marcus Wassmer in Dev-Rendering branch]
2019-01-04 10:13:23 -05:00

15 lines
297 B
Plaintext

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class {GAME_NAME}Target : TargetRules
{
public {GAME_NAME}Target(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
ExtraModuleNames.Add("UE4Game");
}
}