Files
InventoryProject/Source/InventoryProject.Target.cs
2026-02-24 08:29:06 -05:00

16 lines
416 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class InventoryProjectTarget : TargetRules
{
public InventoryProjectTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V6;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
ExtraModuleNames.Add("InventoryProject");
}
}