初始提交: UE5.3项目基础框架

This commit is contained in:
2025-10-14 11:14:54 +08:00
commit 721d9fd98e
5334 changed files with 316782 additions and 0 deletions

16
Source/BXSSP.Target.cs Normal file
View File

@ -0,0 +1,16 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class BXSSPTarget : TargetRules
{
public BXSSPTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V4;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3;
ExtraModuleNames.Add("BXSSP");
ExtraModuleNames.AddRange(new string[] { "BXSSP", "CesiumRuntime" });
}
}