1
0
Fork 0
This repository has been archived on 2024-04-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Global-Gam-Jam-2017/src/globalgamejam/tiles/Mur.java
2017-01-21 04:57:05 +01:00

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();
}
}