Nanook.TheGhost.DatWad.GetBackgroundAudioItems C# (CSharp) 메소드

GetBackgroundAudioItems() 공개 메소드

public GetBackgroundAudioItems ( ) : Nanook.TheGhost.DatItem[]
리턴 Nanook.TheGhost.DatItem[]
        public DatItem[] GetBackgroundAudioItems()
        {
            List<DatItem> d = new List<DatItem>();

            string name;
            foreach (DatItem di in this.DatItems.Values)
            {
                name = this.ReadInternalFileName(di);
                if (name.StartsWith("men"))
                    d.Add(di);
            }
            return d.ToArray();
        }