Files
Motrisa/Source/Motrisa.Target.cs

15 lines
253 B
C#

using UnrealBuildTool;
using System.Collections.Generic;
public class MotrisaTarget : TargetRules
{
public MotrisaTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
ExtraModuleNames.AddRange( new string[] { "Motrisa" } );
}
}