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;