добавлен C++ для развертывания на экраны

This commit is contained in:
Andron666
2020-01-24 23:51:09 +05:00
parent 6ecff40bb1
commit 0de5af9d74
10 changed files with 114 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using UnrealBuildTool;
using System.Collections.Generic;
public class MotrisaEditorTarget : TargetRules
{
public MotrisaEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
ExtraModuleNames.AddRange( new string[] { "Motrisa" } );
}
}