Initial commit

This commit is contained in:
DuOtto
2026-08-15 13:52:59 +02:00
commit 88f9481f19
680 changed files with 5222 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class MaybeThisTimeEditorTarget : TargetRules
{
public MaybeThisTimeEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V7;
ExtraModuleNames.AddRange( new string[] { "MaybeThisTime" } );
}
}