Files
M4_CPP/Source/M4_CPP.Target.cs
CatChow0 4299d2242e Initializes Unreal Engine project
Sets up the basic project structure, including configuration files,
source code directories, and a default .gitignore. Configures the
engine for optimal rendering and input settings.
2025-10-11 18:35:59 +02:00

16 lines
386 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class M4_CPPTarget : TargetRules
{
public M4_CPPTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_6;
ExtraModuleNames.Add("M4_CPP");
}
}