Add fonction to Tile
This commit is contained in:
parent
af14bf15a5
commit
e3e472f30b
4 changed files with 216 additions and 109 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue