diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 3f84723..c8158fd 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,13 +2,8 @@ - - - - - + - @@ -997,14 +992,6 @@ - - - - - - - - @@ -1075,6 +1062,14 @@ + + + + + + + + diff --git a/src/globalgamejam/math/Matrix4f.java b/src/globalgamejam/math/Matrix4f.java index 77a4c94..bcd1b27 100644 --- a/src/globalgamejam/math/Matrix4f.java +++ b/src/globalgamejam/math/Matrix4f.java @@ -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}, diff --git a/src/globalgamejam/tiles/PlayerTile.java b/src/globalgamejam/tiles/PlayerTile.java new file mode 100644 index 0000000..171dd31 --- /dev/null +++ b/src/globalgamejam/tiles/PlayerTile.java @@ -0,0 +1,8 @@ +package globalgamejam.tiles; + +public class PlayerTile extends Tile { + + public PlayerTile(){ + super(); + } +}