1
0
Fork 0

Add fonction to Tile

This commit is contained in:
MrDev023 2017-01-20 19:38:35 +01:00
parent af14bf15a5
commit e3e472f30b
4 changed files with 216 additions and 109 deletions

View file

@ -25,6 +25,9 @@ public class Vector3f {
public Vector3f(Vector2f vec,float z){
this(vec.x,vec.y,z);
}
public Vector3f(Vector2f vec){
this(vec.x,vec.y,0);
}
public Vector3f(Vector3f vec){
this(vec.x,vec.y,vec.z);