mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
44 lines
1.3 KiB
Java
44 lines
1.3 KiB
Java
/*
|
|
* This file ("SoundHandler.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2017 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.misc;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
|
import net.minecraft.util.ResourceLocation;
|
|
import net.minecraft.util.SoundEvent;
|
|
|
|
public final class SoundHandler{
|
|
|
|
public static SoundEvent duhDuhDuhDuuuh;
|
|
public static SoundEvent coffeeMachine;
|
|
public static SoundEvent reconstructor;
|
|
public static SoundEvent crusher;
|
|
|
|
private static int size = 0;
|
|
|
|
public static void init(){
|
|
size = SoundEvent.REGISTRY.getKeys().size();
|
|
|
|
duhDuhDuhDuuuh = registerSound("duh_duh_duh_duuuh");
|
|
coffeeMachine = registerSound("coffee_machine");
|
|
reconstructor = registerSound("reconstructor");
|
|
crusher = registerSound("crusher");
|
|
}
|
|
|
|
private static SoundEvent registerSound(String name){
|
|
ResourceLocation resLoc = new ResourceLocation(ModUtil.MOD_ID, name);
|
|
|
|
SoundEvent event = new SoundEvent(resLoc);
|
|
SoundEvent.REGISTRY.register(size, resLoc, event);
|
|
|
|
size++;
|
|
return event;
|
|
}
|
|
}
|