//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    //	* New Method: Draw Editable Values Options
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    protected override void DrawEditableValuesOptions()
    {
        // On First Iteration
        if (m_bFirstRun)
        {
            OnFirstRun();
        }

        if (GUILayout.Button("Read From Midi File"))
        {
            Target.AccessMidiFile(m_eCurrentPlaylist);
        }
        Target.m_arTrackSoundInfo[(int)m_eCurrentPlaylist].loopCount = DrawChangeableIntegerOption("Loop Count: ", Target.m_arTrackSoundInfo[(int)m_eCurrentPlaylist].loopCount, tooltip: "How many times will the track loop itself?");
        DrawPlaylistSizeOptions();
        DrawPlaylistOptions();
    }