private static void Open()
        {
            // Get existing open window or if none, make a new one:

            if (Instance == null)
            {
                Instance = GetWindow <KSFrameworkEditor>(true, "KSFramework Options");
            }
            Instance.Show();
        }
        private static void Open()
        {
            // Get existing open window or if none, make a new one:

            if (Instance == null)
            {
                Instance = GetWindow<KSFrameworkEditor>(true, "KSFramework Options");
            }
            Instance.Show();
        }