예제 #1
0
파일: JonEngine.cs 프로젝트: JonECG/Brogue
        public static void playSound(string path, float volume = 0.75f)
        {
            audioFile au = new audioFile(contentManager.Load <SoundEffect>(path), path);

            au.playFile(volume);
        }
예제 #2
0
파일: JonEngine.cs 프로젝트: JonECG/Brogue
 public static void playSound(string path, float volume = 0.75f)
 {
     audioFile au = new audioFile(contentManager.Load<SoundEffect>(path), path);
     au.playFile(volume);
 }