blob: 618c4529a647b4d1e00ab8b9e79c8921d5ce8b2d [file] [log] [blame] [raw]
package micdoodle8.mods.galacticraft.api.entity;
/**
* Implement into entities that are living, but can breath without oxygen
*/
public interface IEntityBreathable
{
/**
* Whether or not this entity can currently breathe without oxygen in it's
* vicinity
*/
public boolean canBreath();
}