001package net.minecraft.entity.player;
002
003public enum EnumStatus
004{
005    OK,
006    NOT_POSSIBLE_HERE,
007    NOT_POSSIBLE_NOW,
008    TOO_FAR_AWAY,
009    OTHER_PROBLEM,
010    NOT_SAFE;
011}