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; //from www. ja v a 2s. co m import android.view.MotionEvent; import com.ThirtyNineEighty.Renderable.Renderable2D.I2DRenderable; import java.util.List; public interface IMenu { void initialize(Object args); void uninitialize(); void fillRenderable(List<I2DRenderable> renderables); boolean processEvent(MotionEvent event); }