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