aboutsummaryrefslogtreecommitdiff
path: root/externals/discord-rpc/examples/unrealstatus/Source/unrealstatus.Target.cs
blob: 0c7c3c8889a84ca065a77699e7397bc158996ce9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Fill out your copyright notice in the Description page of Project Settings.

using UnrealBuildTool;
using System.Collections.Generic;

public class unrealstatusTarget : TargetRules
{
	public unrealstatusTarget(TargetInfo Target) : base(Target)
	{
		Type = TargetType.Game;

		ExtraModuleNames.AddRange( new string[] { "unrealstatus" } );
	}
}