first commit

This commit is contained in:
DuOtto
2026-04-28 13:17:01 +02:00
commit c7c37b339c
106 changed files with 6310 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 TableTarget : TargetRules
{
public TableTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V6;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
ExtraModuleNames.Add("Table");
}
}