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

public interface Positionable
{
    public float getX();
    public float getY();
    public float getWidth();
    public float getHeight();
    public void centerOn(float cx, float cy);
    public void translate(float dx, float dy);
    public void setPosition(float x, float y);
}