Aura.Mabi.Const.PocketExtensions.IsBag C# (CSharp) Method

IsBag() public static method

Returns true if pocket is between min and max bag.
public static IsBag ( this pocket ) : bool
pocket this
return bool
		public static bool IsBag(this Pocket pocket)
		{
			return (pocket >= Pocket.ItemBags && pocket <= Pocket.ItemBagsMax);
		}
	}