> For the complete documentation index, see [llms.txt](https://rqndomhax.gitbook.io/versaapi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rqndomhax.gitbook.io/versaapi/inventorymanager/inventory.md).

# Inventory

### Let's make an inventory

{% hint style="info" %}
Every inventory needs to extends from RInventory
{% endhint %}

```java
public class InventoryTest extends RInventory {

    public InventoryTest(Player owner, String name, int size) {
        super(owner, name, size);
    }

}
```
