15 lines
267 B
C#
15 lines
267 B
C#
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class MotrisaEditorTarget : TargetRules
|
|
{
|
|
public MotrisaEditorTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "Motrisa" } );
|
|
}
|
|
}
|