Initial work on DemonWillGauge
Includes the PacketHandler as well as the base system for HUDElements. Still need a replacement for the GuiConfig.
This commit is contained in:
parent
648b96601d
commit
b6931a3116
17 changed files with 858 additions and 33 deletions
14
src/main/java/wayoftime/bloodmagic/client/hud/Elements.java
Normal file
14
src/main/java/wayoftime/bloodmagic/client/hud/Elements.java
Normal file
|
@ -0,0 +1,14 @@
|
|||
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));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue