mirror of
https://github.com/Ed94/UE5_Study.git
synced 2024-11-10 11:54:53 -08:00
16 lines
384 B
C#
16 lines
384 B
C#
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
using UnrealBuildTool;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public class studyTarget : TargetRules
|
||
|
{
|
||
|
public studyTarget( TargetInfo Target) : base(Target)
|
||
|
{
|
||
|
Type = TargetType.Game;
|
||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
||
|
ExtraModuleNames.Add("study");
|
||
|
}
|
||
|
}
|