2025-02-05 23:12:03 +00:00
|
|
|
// Louis Hobbs | 2024-2025
|
2024-06-12 00:34:11 +01:00
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
public class vampiresTarget : TargetRules
|
|
|
|
{
|
|
|
|
public vampiresTarget(TargetInfo Target) : base(Target)
|
|
|
|
{
|
|
|
|
Type = TargetType.Game;
|
|
|
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "vampires" } );
|
|
|
|
}
|
|
|
|
}
|