Path blocks

This commit is contained in:
paulevsGitch 2020-10-02 17:17:04 +03:00
parent e0cf41db63
commit ffd76ecad8
15 changed files with 183 additions and 8 deletions

View file

@ -0,0 +1,13 @@
package ru.betterend.blocks;
import net.minecraft.sound.BlockSoundGroup;
import net.minecraft.sound.SoundEvents;
public class BlockSounds {
public static final BlockSoundGroup TERRAIN_SOUND = new BlockSoundGroup(1.0F, 1.0F,
SoundEvents.BLOCK_STONE_BREAK,
SoundEvents.BLOCK_WART_BLOCK_STEP,
SoundEvents.BLOCK_STONE_PLACE,
SoundEvents.BLOCK_STONE_HIT,
SoundEvents.BLOCK_STONE_FALL);
}