mirror of
https://github.com/izzy2lost/Engine.git
synced 2026-03-10 11:52:02 -07:00
15 lines
344 B
C#
15 lines
344 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class TP_RollingTarget : TargetRules
|
|
{
|
|
public TP_RollingTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.Latest;
|
|
ExtraModuleNames.Add("TP_Rolling");
|
|
}
|
|
}
|