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; public interface IHittable { public void hit(float x1,float x2,int attack); public float giveX(); public void arrowHit(float x1,float y1,float x2,float y2,int attack,boolean ballista); public boolean enemy(BattlePlayer p); public BattlePlayer getPlayer(); }