aboutsummaryrefslogtreecommitdiff
path: root/externals/discord-rpc/examples/unrealstatus/Source/unrealstatusEditor.Target.cs
diff options
context:
space:
mode:
Diffstat (limited to 'externals/discord-rpc/examples/unrealstatus/Source/unrealstatusEditor.Target.cs')
-rw-r--r--externals/discord-rpc/examples/unrealstatus/Source/unrealstatusEditor.Target.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/externals/discord-rpc/examples/unrealstatus/Source/unrealstatusEditor.Target.cs b/externals/discord-rpc/examples/unrealstatus/Source/unrealstatusEditor.Target.cs
new file mode 100644
index 0000000000..2e8ad02286
--- /dev/null
+++ b/externals/discord-rpc/examples/unrealstatus/Source/unrealstatusEditor.Target.cs
@@ -0,0 +1,14 @@
+// Fill out your copyright notice in the Description page of Project Settings.
+
+using UnrealBuildTool;
+using System.Collections.Generic;
+
+public class unrealstatusEditorTarget : TargetRules
+{
+ public unrealstatusEditorTarget(TargetInfo Target) : base(Target)
+ {
+ Type = TargetType.Editor;
+
+ ExtraModuleNames.AddRange( new string[] { "unrealstatus" } );
+ }
+}