package com.yolp900.itsjustacharm.common.sounds;
import com.yolp900.itsjustacharm.reference.LibSounds;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundCategory;
import net.minecraft.util.SoundEvent;
public enum ModSounds {
ConstructionTableConstruction(LibSounds.ConstructionTableConstruction, SoundCategory.BLOCKS);
private LibSounds sound;
private SoundCategory category;
private SoundEvent soundEvent;
ModSounds(LibSounds sound, SoundCategory category) {
this.sound = sound;
this.category = category;
}
public LibSounds getSound() {
return sound;
}
public ResourceLocation getName() {
return sound.getName();
}
public SoundCategory getCategory() {
return category;
}
public SoundEvent getSoundEvent() {
return soundEvent;
}
public void setSoundEvent(SoundEvent soundEvent) {
this.soundEvent = soundEvent;
}
}