Back to project page feup-lpoo-android-tower-defense.
The source code is released under:
MIT License
If you think the Android project feup-lpoo-android-tower-defense listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pt.up.fe.lpoo.framework; /*from w w w.j a v a 2 s. co m*/ /** * Information about the framework interface can be found at * http://www.kilobolt.com/day-5-the-android-game-framework-part-i.html */ public interface Audio { public Music createMusic(String file); public Sound createSound(String file); }