package net.minecraft.src;
public class PlayerCapabilities
{
/** Disables player damage. */
public boolean disableDamage = false;
/** Sets/indicates whether the player is flying. */
public boolean isFlying = false;
/** whether or not to allow the player to fly when they double jump. */
public boolean allowFlying = false;
/**
* Used to determine if creative mode is enabled, and therefore if items should be depleted on usage
*/
public boolean isCreativeMode = false;