// MIT License - Copyright (c) 2025 wallstop // Full license text: https://github.com/wallstop/unity-helpers/blob/main/LICENSE using UnityEditor; using UnityEngine; // This file should PASS: EditorWindow classes don't have the one-class-per-file restriction public class MultipleEditorWindowsA : EditorWindow { [MenuItem("Tools/WindowA")] public static void ShowWindow() { GetWindow("Window A"); } } public class MultipleEditorWindowsB : EditorWindow { [MenuItem("Tools/WindowB")] public static void ShowWindow() { GetWindow("Window B"); } }