1
0
Fork 0

add empty PlayerTile

This commit is contained in:
Fiesta87 2017-01-20 20:53:22 +01:00
parent e3e472f30b
commit 243864a621
2 changed files with 8 additions and 2 deletions

View file

@ -82,8 +82,6 @@ public class Matrix4f {
return mat;
}
public Matrix4f translate(float x,float y,float z){
public Matrix4f translate(float x,float y,float z){
Matrix4f mat = new Matrix4f(new float[][]{
{1,0,0,x},

View file

@ -0,0 +1,8 @@
package globalgamejam.tiles;
public class PlayerTile extends Tile {
public PlayerTile(){
super();
}
}