Bug.Utils.Audio.PlaySong C# (CSharp) 메소드

PlaySong() 공개 메소드

public PlaySong ( SoundEffect song_ ) : void
song_ Microsoft.Xna.Framework.Audio.SoundEffect
리턴 void
        public void PlaySong(SoundEffect song_)
        {
            StopSong();
            song = song_.CreateInstance();
            song.Play();
        }