magic update #2

This commit is contained in:
Nyx
2025-09-26 17:50:32 -06:00
parent 6da5d7f1fb
commit dc2c5af68a
34 changed files with 449 additions and 20 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 Elistria_CallingEditorTarget : TargetRules
{
public Elistria_CallingEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
ExtraModuleNames.AddRange( new string[] { "Elistria_Calling" } );
}
}