AGS.Editor.Components.SpeechComponent.ConstructFileListForSpeechVOX C# (CSharp) Method

ConstructFileListForSpeechVOX() private method

private ConstructFileListForSpeechVOX ( ) : string[]
return string[]
        private string[] ConstructFileListForSpeechVOX()
        {
            List<string> files = new List<string>();
            Utilities.AddAllMatchingFiles(files, LIP_SYNC_DATA_OUTPUT);
            Utilities.AddAllMatchingFiles(files, MP3_FILE_FILTER);
            Utilities.AddAllMatchingFiles(files, OGG_VORBIS_FILE_FILTER);
            Utilities.AddAllMatchingFiles(files, WAVEFORM_FILE_FILTER);
            return files.ToArray();
        }