EventDemo/Source/EventDemo.Target.cs
Gonzalo Martinez 95e8d75ac6 Initial commit
2025-09-28 19:08:30 -03:00

16 lines
395 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class EventDemoTarget : TargetRules
{
public EventDemoTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_6;
ExtraModuleNames.Add("EventDemo");
}
}