Back to project page TileArena.
The source code is released under:
MIT License
If you think the Android project TileArena 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 game.tile.arena.entity.attack; import game.tile.arena.util.Position; public interface Attack { public void equip(); public void dequip(); public void update(double delta, Position target, boolean orientation); }