blob: de174c3cae24f272dcb6e4a928113f5cef8fd851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package ch.asynk.gdx.boardgame.animations;
import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.utils.Disposable;
import ch.asynk.gdx.boardgame.Drawable;
public interface Animation extends Drawable, Disposable
{
public boolean completed();
public boolean animate(float delta);
public default void draw(Batch batch) { };
}
|