X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=92c81716c3b13c1007e2b3758ae342f5aa3fb82d;hb=e8ebf44272dc2bf4e0dc6edc021cf11533399284;hp=1dc516bdd9e761b57124c18d6777df4364d7418d;hpb=503cd1720db3f53b7cbf7e3819968044de29a465;p=cavedroid.git diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 1dc516b..92c8171 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(Vector2 spawnPoint) { + position = spawnPoint.cpy(); moveX = new Vector2(0, 0); moveY = new Vector2(0, 0); width = 4; @@ -24,6 +26,12 @@ public class Player { inventory[0] = 1; inventory[1] = 2; inventory[2] = 3; + inventory[3] = 4; + inventory[4] = 5; + inventory[5] = 6; + inventory[6] = 7; + inventory[7] = 8; + inventory[8] = 9; } public Rectangle getRect() {