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