Added a bit of framework for the incense system.
This commit is contained in:
parent
2ffd6c144a
commit
574c995865
10 changed files with 286 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue