package de.swagner.ld22;
import com.badlogic.gdx.math.Vector3;
public class Stone extends Renderable {
public Stone(Vector3 position, float scale, float angleX, float angleY) {
this.position = position.cpy();
this.collisionPosition.set(position);
this.collisionPosition.y = 0;
this.collisionPosition.x += 20;
this.scale = scale;
this.angleX = angleX;
this.angleY = angleY;
}
}