Back to project page Tanks.
The source code is released under:
MIT License
If you think the Android project Tanks 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.ThirtyNineEighty.Game.Menu.Controls; /* ww w . j ava 2s. c o m*/ import com.ThirtyNineEighty.Renderable.Renderable2D.I2DRenderable; public interface IControl extends I2DRenderable { void processDown(int pointerId, float x, float y); void processMove(int pointerId, float x, float y); void processUp(int pointerId, float x, float y); void dispose(); }