Back to project page android_game_engine.
The source code is released under:
GNU General Public License
If you think the Android project android_game_engine 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 org.es.engine.graphics.animation; /* w w w. j a va 2 s. c o m*/ /** * The class implementing this interface will be called when the animation ends. * * @author Cyril Leroux * Created on 10/10/13. */ public interface AnimationCallback { void onAnimationStopped(); }