16 lines
		
	
	
		
			374 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			374 B
		
	
	
	
		
			C#
		
	
	
	
	
	
// Copyright Epic Games, Inc. All Rights Reserved.
 | 
						|
 | 
						|
using UnrealBuildTool;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
public class JHTarget : TargetRules
 | 
						|
{
 | 
						|
	public JHTarget(TargetInfo Target) : base(Target)
 | 
						|
	{
 | 
						|
		Type = TargetType.Game;
 | 
						|
		DefaultBuildSettings = BuildSettingsVersion.V5;
 | 
						|
		IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_6;
 | 
						|
		ExtraModuleNames.Add("JH");
 | 
						|
	}
 | 
						|
}
 |