summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/gdx/boardgame/Drawable.java
blob: 8c53e62c755eec57f939f3c012c6a0420c30752b (plain)
1
2
3
4
5
6
7
8
9
10
package ch.asynk.gdx.boardgame;

import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer;

public interface Drawable
{
    public void draw(Batch batch);
    default public void drawDebug(ShapeRenderer debugShapes) { }
}