16 lines
428 B
C#
16 lines
428 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class COMP250_1_2101327_AITarget : TargetRules
|
|
{
|
|
public COMP250_1_2101327_AITarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
|
ExtraModuleNames.Add("COMP250_1_2101327_AI");
|
|
}
|
|
}
|