BloodMagic/src/main/java/wayoftime/bloodmagic/client/hud/Elements.java

15 lines
457 B
Java
Raw Normal View History

package wayoftime.bloodmagic.client.hud;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.vector.Vector2f;
import wayoftime.bloodmagic.BloodMagic;
import wayoftime.bloodmagic.client.hud.element.ElementDemonAura;
public class Elements
{
public static void registerElements()
{
ElementRegistry.registerHandler(new ResourceLocation(BloodMagic.MODID, "demon_will_aura"), new ElementDemonAura(), new Vector2f(0.01F, 0.01F));
}
}