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: Sound.java //Purpose: provide the interface to play and release sounds //www.ja v a 2 s .c o m package com.hungry.mouse.framework; public interface Sound { public void play(float volume); //close system resource when is no more needed public void dispose(); }