/// <summary>
    /// Loads all the libraries for the editors.
    /// </summary>
    void LoadLibraries()
    {
        musicEditor    = new MusicEditorWindow(musicLibrary, musicContainer, sfxLibrary, sfxContainer);
        songlistEditor = new SonglistEditorWindow(musicListLibrary, musicListContainer, sfxListLibrary, sfxListContainer);

        InitializeWindow();
    }