Illusion-UE5/hwanyoung2/Source/hwanyoung2.Target.cs
7heIVIaze 75c36782a9 Implemented dialogue system and dialogue UI prototype
Implemented Dialogue System using dialogue Component and Interface, make Dialogue UI Prototype, and change the data type of the characters to be displayed in the UI in source code
2025-05-01 12:23:10 +09:00

19 lines
587 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class hwanyoung2Target : TargetRules
{
public hwanyoung2Target(TargetInfo Target) : base(Target)
{
WindowsPlatform.Compiler = WindowsCompiler.VisualStudio2022;
WindowsPlatform.CompilerVersion = "14.38.33130"; // 설치된 정확한 버전 번호로 바꿔주세요
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V4;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3;
ExtraModuleNames.Add("hwanyoung2");
}
}