Starting multiplayer Marble game

This commit is contained in:
2026-09-01 21:20:20 +02:00
parent 652e1bfa8b
commit b107357501
30 changed files with 1177 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 BigMarbleWorldTarget : TargetRules
{
public BigMarbleWorldTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V7;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_8;
ExtraModuleNames.Add("BigMarbleWorld");
}
}