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
+16
View File
@@ -0,0 +1,16 @@
// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class MaybeThisTimeTarget : TargetRules
{
public MaybeThisTimeTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V7;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
ExtraModuleNames.AddRange( new string[] { "MaybeThisTime" } );
}
}