An open API service indexing awesome lists of open source software.

https://github.com/whynotmax/minestomutilities

Utils for minestom.
https://github.com/whynotmax/minestomutilities

Last synced: 10 months ago
JSON representation

Utils for minestom.

Awesome Lists containing this project

README

          

# MinestomUtilities

A collection of utilities for Minestom. This project is a work in progress and will be updated as I add more utilities.

## Utilities

* ``inventory-framework`` - A simple inventory framework for Minestom. This framework allows you to create custom inventories with ease. It also supports custom item stacks and custom item stack actions.
* ``vanilla-crafting`` - A simple crafting framework for Minestom. This framework allows you to create custom crafting recipes with ease. It also supports custom crafting recipe actions.

## Installation

To install MinestomUtilities, you can use Maven or Gradle. Here are the steps to install MinestomUtilities using Maven or Gradle.

### Maven

Add the JitPack repository to your ``pom.xml`` file:

```xml


jitpack.io
https://jitpack.io

```

Add the MinestomUtilities dependency to your ``pom.xml`` file:

```xml

com.github.whynotmax
MinestomUtilities
1.0.0

```

### Gradle

Add the JitPack repository to your ``build.gradle`` file:

```gradle
repositories {
maven { url 'https://jitpack.io' }
}
```

Add the MinestomUtilities dependency to your ``build.gradle`` file:

```gradle
dependencies {
implementation 'com.github.whynotmax:MinestomUtilities:1.0.0'
}
```

## Usage

Here is an example of how to use the inventory framework:

```java
//todo
```