This commit is contained in:
2023-07-30 16:30:14 +02:00
commit d3b4f002d3
23 changed files with 510 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class UE5_GridToolTarget : TargetRules
{
public UE5_GridToolTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V2;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
ExtraModuleNames.Add("UE5_GridTool");
}
}