Updated documentation for clarity and coherence.

This commit is contained in:
Tim Ambrogi
2022-05-19 11:18:16 -04:00
parent ba0a29d151
commit 45afeb692d
3 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ using System.Collections.Generic;
public class MyGameEditorTarget : TargetRules
{
public SurferEditorTarget( TargetInfo Target) : base(Target)
public GameEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
@@ -35,7 +35,7 @@ public class MyGameEditorTarget : TargetRules
}
```
All we need to do is add a single line at the bottom of the constructor of `SurferEditorTarget`:
All we need to do is add a single line at the bottom of the constructor of `GameEditorTarget`:
`bEnableCppCoroutinesForEvaluation = true;`