Added a bit of framework for the incense system.

This commit is contained in:
WayofTime 2016-01-23 16:25:39 -05:00
parent 2ffd6c144a
commit 574c995865
10 changed files with 286 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package WayofTime.bloodmagic.api.incense;
public class TranquilityStack
{
public final EnumTranquilityType type;
public double value;
public TranquilityStack(EnumTranquilityType type, double value)
{
this.type = type;
this.value = value;
}
}