Changes
Page history
Update API.md
authored
Sep 27, 2023
by
Ticxo
Hide whitespace changes
Inline
Side-by-side
API.md
View page @
9480dc8a
:sadge:
Model Engine is designed to be used alongside
[
MythicMobs
](
MythicMobs
)
, however, if you wish to add custom behaviors or
\ No newline at end of file
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