Merge
This commit is contained in:
commit
60f16efe7f
3 changed files with 23 additions and 20 deletions
|
@ -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},
|
||||
|
|
8
src/globalgamejam/tiles/PlayerTile.java
Normal file
8
src/globalgamejam/tiles/PlayerTile.java
Normal file
|
@ -0,0 +1,8 @@
|
|||
package globalgamejam.tiles;
|
||||
|
||||
public class PlayerTile extends Tile {
|
||||
|
||||
public PlayerTile(){
|
||||
super();
|
||||
}
|
||||
}
|
Reference in a new issue