Updates code

This commit is contained in:
2024-05-23 15:07:06 +02:00
parent 47f5870c07
commit c45cc470e2
7 changed files with 92 additions and 0 deletions

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 VistaTeleportationEditorTarget : TargetRules
{
public VistaTeleportationEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V4;
ExtraModuleNames.AddRange( new string[] { "VistaTeleportation" } );
}
}