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

public interface Positionable
{
    public float getX();
    public float getY();
    public float getWidth();
    public float getHeight();
    public void setPosition(float x, float y, float w, float h);
}