Skip to content

Commit 716b46f

Browse files
committed
chore: Rename EOSSettingsWindow to remove 'NEW_' prefix.
1 parent f040bd2 commit 716b46f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Assets/Plugins/Source/Editor/EditorWindows/EOSSettingsWindow.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace PlayEveryWare.EpicOnlineServices.Editor.Windows
4242
/// Creates the view for showing the eos plugin editor config values.
4343
/// </summary>
4444
[Serializable]
45-
public class NEW_EOSSettingsWindow : EOSEditorWindow
45+
public class EOSSettingsWindow : EOSEditorWindow
4646
{
4747
/// <summary>
4848
/// The editor for the product information that is shared across all
@@ -83,12 +83,12 @@ public class NEW_EOSSettingsWindow : EOSEditorWindow
8383
fixedHeight = 40
8484
};
8585

86-
public NEW_EOSSettingsWindow() : base("EOS Configuration") { }
86+
public EOSSettingsWindow() : base("EOS Configuration") { }
8787

8888
[MenuItem("EOS Plugin/EOS Configuration", priority = 1)]
8989
public static void ShowWindow()
9090
{
91-
var window = GetWindow<NEW_EOSSettingsWindow>();
91+
var window = GetWindow<EOSSettingsWindow>();
9292
window.SetIsEmbedded(false);
9393
}
9494

0 commit comments

Comments
 (0)