added placeholder cpp files to the project

This commit is contained in:
2026-06-19 16:30:11 -07:00
parent 532e9cc1ae
commit fc127763b2
8 changed files with 138 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 LevelUnderNineEditorTarget : TargetRules
{
public LevelUnderNineEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V7;
ExtraModuleNames.AddRange( new string[] { "LevelUnderNine" } );
}
}