mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 21:04:30 +00:00
16 lines
408 B
C#
16 lines
408 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class ProleTarget : TargetRules
|
|
{
|
|
public ProleTarget( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V6;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
|
|
ExtraModuleNames.AddRange( new string[] { "Prole" } );
|
|
}
|
|
}
|