first commit

This commit is contained in:
2020-11-30 14:27:22 +05:00
parent 7ecb2bc245
commit a907d8bbeb
12 changed files with 223 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class MKCCEditorTarget : TargetRules
{
public MKCCEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "MKCC" } );
}
}