2015-11-02 12:39:44 -08:00
|
|
|
package WayofTime.bloodmagic.api;
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2015-11-02 12:39:44 -08:00
|
|
|
import WayofTime.bloodmagic.api.util.helper.LogHelper;
|
2015-10-29 20:22:14 -07:00
|
|
|
import lombok.Getter;
|
|
|
|
import lombok.Setter;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.util.DamageSource;
|
|
|
|
import net.minecraftforge.fluids.Fluid;
|
|
|
|
|
2015-11-02 12:39:44 -08:00
|
|
|
public class BloodMagicAPI {
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2015-12-02 00:55:32 -08:00
|
|
|
@Getter @Setter
|
2015-10-29 20:22:14 -07:00
|
|
|
private static boolean loggingEnabled;
|
|
|
|
|
|
|
|
@Getter
|
2015-11-02 12:39:44 -08:00
|
|
|
private static LogHelper logger = new LogHelper("BloodMagic|API");
|
2015-10-29 20:22:14 -07:00
|
|
|
|
|
|
|
@Getter
|
|
|
|
private static DamageSource damageSource = new DamageSourceBloodMagic();
|
|
|
|
|
2015-12-02 00:55:32 -08:00
|
|
|
@Getter @Setter
|
2015-10-29 20:22:14 -07:00
|
|
|
private static Item orbItem;
|
2015-12-02 00:55:32 -08:00
|
|
|
@Getter @Setter
|
|
|
|
private static Item scribeItem;
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2015-12-02 00:55:32 -08:00
|
|
|
|
|
|
|
@Getter @Setter
|
2015-10-29 20:22:14 -07:00
|
|
|
private static Fluid lifeEssence;
|
|
|
|
}
|