A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
SDKDemo.Target.cs
Go to the documentation of this file.
1// Fill out your copyright notice in the Description page of Project Settings.
2
4using System.Collections.Generic;
5
7{
8 public SDKDemoTarget(TargetInfo Target) : base(Target)
9 {
10 Type = TargetType.Game;
11 DefaultBuildSettings = BuildSettingsVersion.V2;
12
13 ExtraModuleNames.AddRange( new string[] { "SDKDemo" } );
14 }
15}
SDKDemoTarget(TargetInfo Target)