Exemple #1
0
        public SoundtrackInfo getSoundtrackInfo()
        {
            SoundtrackInfo soundtrackInfo = new SoundtrackInfo();

            soundtrackInfo.themeCount = m_themes.Count;
            soundtrackInfo.themeIds   = new int[m_themes.Count];

            int i = 0;

            foreach (int themeId in m_themes.Keys)
            {
                soundtrackInfo.themeIds[i] = themeId;
                i++;
            }

            return(soundtrackInfo);
        }
Exemple #2
0
        public SoundtrackInfo getSoundtrackInfo()
        {
            SoundtrackInfo soundtrackInfo = new SoundtrackInfo();
            soundtrackInfo.themeCount = m_themes.Count;
            soundtrackInfo.themeIds = new int[m_themes.Count];

            int i = 0;
            foreach (int themeId in m_themes.Keys)
            {
                soundtrackInfo.themeIds[i] = themeId;
                i++;
            }

            return soundtrackInfo;
        }