X-Git-Url: https://deadsoftware.ru/gitweb?p=cavedroid.git;a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fmobs%2FFallingGravel.java;h=11d02d2d72b29fa5f0b35f2134713959906c9872;hp=0cfa261380fd6b41f0413e1691f615bea2b4ced0;hb=bea2a3c5b967bcd90ccd83e08e833d58449e963a;hpb=75e8bbe4c9dceaabd8bb7e7976ad9052cfb0a968 diff --git a/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingGravel.java b/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingGravel.java index 0cfa261..11d02d2 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingGravel.java +++ b/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingGravel.java @@ -6,7 +6,7 @@ import com.badlogic.gdx.math.Vector2; import ru.deadsoftware.cavecraft.game.Items; import ru.deadsoftware.cavecraft.misc.Assets; -public class FallingGravel extends Mob{ +public class FallingGravel extends Mob { public FallingGravel(int x, int y) { dir = 0; @@ -29,7 +29,7 @@ public class FallingGravel extends Mob{ @Override public void draw(SpriteBatch spriteBatch, float x, float y) { - spriteBatch.draw(Assets.blockTextures[Items.BLOCKS.get("gravel").getTexture()],x, y); + spriteBatch.draw(Assets.blockTextures[Items.BLOCKS.get("gravel").getTexture()], x, y); } @Override