Merge pull request #41 from Pokefenn/master

Added in IBloodAltar and fixed a few derpy things
This commit is contained in:
WayofTime 2014-06-21 18:48:52 -04:00
commit b6591ad5d7
2 changed files with 94 additions and 24 deletions

View file

@ -0,0 +1,26 @@
package WayofTime.alchemicalWizardry.api.tile;
/**
* Created by Pokefenn.
*/
public interface IBloodAltar
{
public int getCapacity();
public int getCurrentBlood();
public int getTier();
public int getProgress();
public float getSacrificeMultiplier();
public float getSelfSacrificeMultiplier();
public float getOrbMultiplier();
public float getDislocationMultiplier();
public int getBufferCapacity();
}