|
|
:sadge: |
|
|
\ No newline at end of file |
|
|
Model Engine is designed to be used alongside [MythicMobs](MythicMobs), however, if you wish to add custom behaviors or
|
|
|
use Model Engine without MythicMobs, you can use our robust API!
|
|
|
|
|
|
### Current Version: B4.0.0
|
|
|
|
|
|
## Repository & Dependency
|
|
|
### Maven
|
|
|
```xml
|
|
|
<repository>
|
|
|
<id>nexus</id>
|
|
|
<name>Lumine Public</name>
|
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
|
</repository>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.ticxo.modelengine</groupId>
|
|
|
<artifactId>ModelEngine</artifactId>
|
|
|
<version>version</version>
|
|
|
</dependency>
|
|
|
```
|
|
|
|
|
|
### Gradle (Kotlin)
|
|
|
```kotlin
|
|
|
repositories {
|
|
|
maven(url = "https://mvn.lumine.io/repository/maven-public/")
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
compileOnly("com.ticxo.modelengine:ModelEngine:version")
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
### Gradle (Groovy)
|
|
|
```groovy
|
|
|
repositories {
|
|
|
maven { url 'https://mvn.lumine.io/repository/maven-public/' }
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
compileOnly 'com.ticxo.modelengine:ModelEngine:version'
|
|
|
}
|
|
|
|
|
|
``` |
|
|
\ No newline at end of file |