Installation
First, ensure you are using Minestom as your server implementation.
StomMobs is available via Mavencentral
Dependency
Add the repository and dependency to your build file.
kotlin
repositories {
mavenCentral()
}
dependencies {
implementation("codes.bed.minestom:mob:0.1.0")
}groovy
repositories {
mavenentral()
}
dependencies {
implementation 'codes.bed.minestom:mob:0.1.0'
}xml
<dependencies>
<dependency>
<groupId>codes.bed.minestom</groupId>
<artifactId>mob</artifactId>
<version>0.1.0</version>
</dependency>
</dependencies>