This commit is contained in:
Andron666
2020-10-20 19:30:04 +05:00
commit b0c5bb901b
26 changed files with 882 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class Onejsky4UEditorTarget : TargetRules
{
public Onejsky4UEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "Onejsky4U" } );
}
}