package com.yolp900.itsjustacharm.reference; import com.yolp900.itsjustacharm.api.IJCConstants; import net.minecraft.util.ResourceLocation; public enum LibSounds { ConstructionTableConstruction("ConstructionTableConstruction"); private ResourceLocation name; LibSounds(String name) { this.name = new ResourceLocation(IJCConstants.MOD_ID, name); } public ResourceLocation getName() { return name; } }