# Inventory Skulls

### Overview

The `InventorySkulls` class provides a utility method for adding player skull items to an inventory in a Minecraft Bukkit server environment. This class simplifies the process of creating and customizing player skull items with specific textures.

### Methods

#### `addSkullToInventory`

```java
public static void addSkullToInventory(Inventory inventory, String url, int amount, int slot, String itemName, String... lore)
```

Adds a player skull item with a custom texture to the specified inventory.

**Parameters**

* `inventory`: The inventory to which the skull item will be added.
* `url`: The URL of the custom texture for the player skull.
* `amount`: The amount of skull items to add to the inventory.
* `slot`: The slot in the inventory where the skull item will be placed.
* `itemName`: The display name of the skull item.
* `lore`: The lore lines for the skull item.

**Description**

This method creates a player skull item with a custom texture specified by the provided URL and adds it to the specified inventory. It allows developers to easily customize player skull items with unique textures, display names, and lore.

### Notes

* The `InventorySkulls` class simplifies the process of adding player skull items to inventories in Bukkit plugins.
* Developers can use the `addSkullToInventory` method to add custom player skull items with specific textures, names, and lore to inventories.
* Customizing player skull items allows plugin developers to create visually appealing and interactive inventory interfaces for players.
