blob: 5af948e449bc6e220f4e0a6f1104f09b06538dd2 (
plain)
1
2
3
4
5
6
7
8
9
|
package ch.asynk.gdx.tabletop;
import com.badlogic.gdx.math.Vector2;
public interface Board
{
public void centerOf(int x, int y, Vector2 v);
public void toBoard(float x, float y, Vector2 v);
}
|