Bug fixes and add wall
This commit is contained in:
parent
5c31a47553
commit
e4992123a8
9 changed files with 44 additions and 35 deletions
16
src/globalgamejam/tiles/Mur.java
Normal file
16
src/globalgamejam/tiles/Mur.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
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();
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue