mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
16 lines
480 B
Java
16 lines
480 B
Java
|
package com.minelittlepony.unicopia;
|
||
|
|
||
|
import net.minecraft.util.ResourceLocation;
|
||
|
import net.minecraft.util.SoundEvent;
|
||
|
import net.minecraftforge.registries.IForgeRegistry;
|
||
|
|
||
|
public class USounds {
|
||
|
|
||
|
public static final SoundEvent WING_FLAP = new SoundEvent(new ResourceLocation(Unicopia.MODID, "wing_flap"))
|
||
|
.setRegistryName(Unicopia.MODID, "wing_flap");
|
||
|
|
||
|
static void init(IForgeRegistry<SoundEvent> registry) {
|
||
|
registry.registerAll(WING_FLAP);
|
||
|
}
|
||
|
}
|