Path blocks
This commit is contained in:
parent
e0cf41db63
commit
ffd76ecad8
15 changed files with 183 additions and 8 deletions
13
src/main/java/ru/betterend/blocks/BlockSounds.java
Normal file
13
src/main/java/ru/betterend/blocks/BlockSounds.java
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue