Back to project page diploma-assignment.
The source code is released under:
MIT License
If you think the Android project diploma-assignment 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.me.battlescreen; /*from w w w.j a va2 s .c o m*/ public interface IAttacking { public boolean isAttacking(); public void checkForAttack(float x); public float getStart(); public float getEnd(); public int getAttack(); public boolean timeToAttack(); public BattlePlayer getPlayer(); }