summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/gdx/tabletop/Drawable.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/ch/asynk/gdx/tabletop/Drawable.java')
-rw-r--r--core/src/ch/asynk/gdx/tabletop/Drawable.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/core/src/ch/asynk/gdx/tabletop/Drawable.java b/core/src/ch/asynk/gdx/tabletop/Drawable.java
deleted file mode 100644
index ce9372b..0000000
--- a/core/src/ch/asynk/gdx/tabletop/Drawable.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package ch.asynk.gdx.tabletop;
-
-import com.badlogic.gdx.graphics.g2d.Batch;
-import com.badlogic.gdx.graphics.glutils.ShapeRenderer;
-
-public interface Drawable
-{
- public float getX();
- public float getY();
- public float getWidth();
- public float getHeight();
- public float getInnerX();
- public float getInnerY();
- public float getInnerWidth();
- public float getInnerHeight();
- public void draw(Batch batch);
- default public void drawDebug(ShapeRenderer debugShapes) { }
- public void setPosition(float x, float y, float w, float h);
-}