FancyWorldsApi
Getting Started
How to get started with the FancyWorlds API
Include the API in your project
To include the FancyNPCs API in your project, you need to add the following dependency to your build.gradle.kts or pom.xml file.
Latest version: latest
Gradle:
repositories {
maven("https://repo.fancyinnovations.com/releases")
}dependencies {
compileOnly("com.fancyinnovations:FancyWorlds:${VERSION}")
}Maven:
<repository>
<id>fancyinnovations-releases</id>
<name>FancyInnovations Repository</name>
<url>https://repo.fancyinnovations.com/releases</url>
</repository><dependency>
<groupId>com.fancyinnovations</groupId>
<artifactId>FancyWorlds</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>Replace ${VERSION} with the version of the API you want to use. You can find the latest version on the download pages or in the GitHub releases.
Create and manage worlds
TODO
JavaDocs and help
You can find the JavaDocs for the FancyWorlds API here.
Join the FancyInnovations Discord for help and support. There is a dedicated channel for help about the api (#worlds-api).