static public EditorCoroutine StartCoroutine(EditorYieldInstruction pRoutine)
    {
        var tRoutine = new EditorCoroutine(pRoutine);

        tRoutine.Start();
        return(tRoutine);
    }
 public EditorCoroutine(EditorYieldInstruction pRoutine)
 {
     mRoutine = pRoutine;
 }