From c6d4cbda5dfdd2629004b69c51e19326dd2dd6d0 Mon Sep 17 00:00:00 2001 From: Dinnerbone Date: Mon, 31 Jan 2011 01:23:21 +0000 Subject: Added getRemainingAir/setRemainingAir/getMaximumAir/setMaximumAir on LivingEntity --- src/main/java/org/bukkit/entity/LivingEntity.java | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'src') diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java index e58122d1..fb5c6fbd 100644 --- a/src/main/java/org/bukkit/entity/LivingEntity.java +++ b/src/main/java/org/bukkit/entity/LivingEntity.java @@ -59,4 +59,32 @@ public interface LivingEntity extends Entity { * @return */ public Vehicle getVehicle(); + + /** + * Returns the amount of air that this entity has remaining, in ticks + * + * @return Amount of air remaining + */ + public int getRemainingAir(); + + /** + * Sets the amount of air that this entity has remaining, in ticks + * + * @param ticks Amount of air remaining + */ + public void setRemainingAir(int ticks); + + /** + * Returns the maximum amount of air this entity can have, in ticks + * + * @return Maximum amount of air + */ + public int getMaximumAir(); + + /** + * Sets the maximum amount of air this entity can have, in ticks + * + * @param ticks Maximum amount of air + */ + public void setMaximumAir(int ticks); } -- cgit v1.2.3