X-Git-Url: https://deadsoftware.ru/gitweb?p=cavedroid.git;a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=bcebde6f3d6198ae7ecba5185c4d3ff445ccabe6;hp=18188690f75f33a35dd2445e6ff3086681a5bd51;hb=40312aaac2ec8bd1247ad5979f7bd1d8e47ecae3;hpb=3170dad22d4643ae39e66a0d6a445df198418e73 diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 1818869..bcebde6 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -1,8 +1,10 @@ package ru.deadsoftware.cavecraft.game.objects; +import com.badlogic.gdx.math.RandomXS128; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; import ru.deadsoftware.cavecraft.Assets; +import ru.deadsoftware.cavecraft.game.WorldGen; public class Player { @@ -13,8 +15,8 @@ public class Player { public int[] inventory; public boolean flyMode = false; - public Player() { - position = new Vector2(0, 0); + public Player(int x, int y) { + position = new Vector2(x, y); moveX = new Vector2(0, 0); moveY = new Vector2(0, 0); width = 4;