Inital Commit

This commit is contained in:
Mueller Wayan
2025-08-15 10:40:09 +02:00
commit d31b693fd2
521 changed files with 933 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 NesiAndMyProjectEditorTarget : TargetRules
{
public NesiAndMyProjectEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
ExtraModuleNames.AddRange( new string[] { "NesiAndMyProject" } );
}
}