Initial UE5 project commit

This commit is contained in:
IlyStalker
2026-08-16 20:34:49 +03:00
commit 7495ad81dd
1357 changed files with 13696 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 Game_2Target : TargetRules
{
public Game_2Target(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V7;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_8;
ExtraModuleNames.Add("Game_2");
}
}