16 lines
421 B
C#
16 lines
421 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class Puzzle_IslandEditorTarget : TargetRules
|
|
{
|
|
public Puzzle_IslandEditorTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
DefaultBuildSettings = BuildSettingsVersion.V4;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3;
|
|
ExtraModuleNames.Add("Puzzle_Island");
|
|
}
|
|
}
|