Back to project page Hungry-Mouse.
The source code is released under:
MIT License
If you think the Android project Hungry-Mouse listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
//Name: Audio.java //Purpose: create music and sound instances /*from ww w.j a v a 2 s. co m*/ package com.hungry.mouse.framework; public interface Audio { //music represents streamed audio file public Music createMusic(String file); //sound represents short sound effects public Sound createSound(String file); }