Initial commit

This commit is contained in:
ves
2026-08-03 00:28:44 +03:00
commit 3ab2f87e3e
602 changed files with 5891 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class NERGUSEditorTarget : TargetRules
{
public NERGUSEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_6;
ExtraModuleNames.Add("NERGUS");
}
}