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