Files
UnrealEngine/Engine/Build/Target.cs.template
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
287 B
Plaintext

// Copyright 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");
}
}