Back to project page iSlide.
The source code is released under:
MIT License
If you think the Android project iSlide 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 edu.csun.group2.islide.interfaces; import com.badlogic.gdx.graphics.g2d.SpriteBatch; public interface IRenderable { void update(long elapsedMillis); void draw(SpriteBatch spriteBatch); }