From d80cc51aff929b5f98b279711cba7d2938f8732e Mon Sep 17 00:00:00 2001 From: max Date: Thu, 25 Jul 2024 22:58:07 +0200 Subject: [PATCH] naming --- Nerfed.Editor/Editor/EditorGui.cs | 2 +- Nerfed.Editor/Project/{Project.cs => EditorProject.cs} | 0 Nerfed.Editor/Project/{ProjectGui.cs => EditorProjectGui.cs} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename Nerfed.Editor/Project/{Project.cs => EditorProject.cs} (100%) rename Nerfed.Editor/Project/{ProjectGui.cs => EditorProjectGui.cs} (97%) diff --git a/Nerfed.Editor/Editor/EditorGui.cs b/Nerfed.Editor/Editor/EditorGui.cs index 39045b0..291c40e 100644 --- a/Nerfed.Editor/Editor/EditorGui.cs +++ b/Nerfed.Editor/Editor/EditorGui.cs @@ -69,7 +69,7 @@ private static void HandleOnGui() ImGui.ShowDemoWindow(); - ProjectGui.OnGui(); + EditorProjectGui.OnGui(); } } } \ No newline at end of file diff --git a/Nerfed.Editor/Project/Project.cs b/Nerfed.Editor/Project/EditorProject.cs similarity index 100% rename from Nerfed.Editor/Project/Project.cs rename to Nerfed.Editor/Project/EditorProject.cs diff --git a/Nerfed.Editor/Project/ProjectGui.cs b/Nerfed.Editor/Project/EditorProjectGui.cs similarity index 97% rename from Nerfed.Editor/Project/ProjectGui.cs rename to Nerfed.Editor/Project/EditorProjectGui.cs index c866b9f..7e1daea 100644 --- a/Nerfed.Editor/Project/ProjectGui.cs +++ b/Nerfed.Editor/Project/EditorProjectGui.cs @@ -2,7 +2,7 @@ namespace Nerfed.Editor.Project; -internal static class ProjectGui +internal static class EditorProjectGui { private static string projectDirectory = string.Empty; private static string projectName = string.Empty;