using UnityEditor; using UnityEngine; using System.Collections; namespace SoftKitty.MasterCharacterCreator { public class MCC_Menu : ScriptableWizard { [MenuItem("Window/Master Character Creator/Tools")] public static void CreateWizard() { EditorWindow.GetWindow(false, "Master Character Creator", true).Show(); } } }