1
0
Fork 0
This commit is contained in:
MrDev023 2017-01-20 20:39:18 +01:00
commit 60f16efe7f
3 changed files with 23 additions and 20 deletions

View file

@ -81,7 +81,7 @@ public class Matrix4f {
});
return mat;
}
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();
}
}