Added Living Armour stat tracker for movement. Implemented necessary methods for the armour.
This commit is contained in:
parent
5387770fa6
commit
34335d66cc
6 changed files with 175 additions and 11 deletions
|
@ -1,5 +1,7 @@
|
|||
package WayofTime.bloodmagic.api.livingArmour;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.world.World;
|
||||
|
@ -35,7 +37,7 @@ public abstract class StatTracker
|
|||
*/
|
||||
public abstract boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour);
|
||||
|
||||
public abstract LivingArmourUpgrade[] getUpgrades();
|
||||
public abstract List<LivingArmourUpgrade> getUpgrades();
|
||||
|
||||
public final boolean isDirty()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue