generated from Basemash_UE/UE_Template
13 lines
372 B
C#
13 lines
372 B
C#
|
|
using UnrealBuildTool;
|
||
|
|
|
||
|
|
public class PSC_SharkTableEditorTarget : TargetRules
|
||
|
|
{
|
||
|
|
public PSC_SharkTableEditorTarget(TargetInfo Target) : base(Target)
|
||
|
|
{
|
||
|
|
DefaultBuildSettings = BuildSettingsVersion.Latest;
|
||
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
||
|
|
Type = TargetType.Editor;
|
||
|
|
ExtraModuleNames.Add("PSC_SharkTable");
|
||
|
|
}
|
||
|
|
}
|