14 lines
291 B
C#
14 lines
291 B
C#
|
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
using UnrealBuildTool;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public class CarwatchTarget : TargetRules
|
||
|
{
|
||
|
public CarwatchTarget(TargetInfo Target) : base(Target)
|
||
|
{
|
||
|
Type = TargetType.Game;
|
||
|
ExtraModuleNames.Add("Carwatch");
|
||
|
}
|
||
|
}
|