15 lines
253 B
C#
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" } );
|
|
}
|
|
}
|