Correction du bug de getBlock dans la class World
This commit is contained in:
parent
521e58acb9
commit
98b7946cc2
10 changed files with 405 additions and 121 deletions
|
@ -25,6 +25,10 @@ public class Vector2f {
|
|||
public void setY(float y) {
|
||||
this.y = y;
|
||||
}
|
||||
|
||||
public Vector2f copy() {
|
||||
return new Vector2f(x,y);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Reference in a new issue