/// <summary>
 /// Parses the InventorySlot from a string.
 /// </summary>
 /// <param name="parser">The Parser to use.</param>
 /// <param name="value">The string to parse.</param>
 /// <returns>The InventorySlot parsed from the string.</returns>
 public static InventorySlot ParseInventorySlot(this Parser parser, string value)
 {
     return(new InventorySlot(parser.ParseByte(value)));
 }