16 lines
348 B
Java
16 lines
348 B
Java
package globalgamejam.tiles;
|
|
|
|
import globalgamejam.math.Color4f;
|
|
import globalgamejam.math.Vector2f;
|
|
|
|
public class Mur extends Tile{
|
|
|
|
public Mur(int x,int y,int scaleX,int scaleY){
|
|
super();
|
|
super.setColor(Color4f.BLACK);
|
|
super.setPosition(new Vector2f(x, y));
|
|
super.setScale(new Vector2f(scaleX, scaleY));
|
|
super.applyTransform();
|
|
}
|
|
|
|
}
|