Back to project page shapemergency.
The source code is released under:
GNU General Public License
If you think the Android project shapemergency 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 com.adsg0186.shapemergency.testgame1.blobs; public interface DamagableIF { public int setHitPoints(int hp); public int incHitPoints(int hp); public int decHitPoints(int hp); public int getHitPoints(); }