Skip to content

Developer API

Ryandw11 edited this page Jun 6, 2021 · 20 revisions

Custom Structures provides a robust API allowing developers to manipulate the functionality of the plugin. As of 1.5.8 it is possible to make custom sections/properties for structures. See more about that here.

Using Maven/Gradle

Maven Version

Maven

<repositories>
    <repository>
        <id>Ryandw11 Repo</id>
        <url>https://repo.ryandw11.com/repository/maven-releases/</url>
    </repository>
</repositories>
<dependency>
  <groupId>com.ryandw11</groupId>
  <artifactId>CustomStructures</artifactId>
  <version>1.5.8</version>
  <scope>provided</scope>
</dependency>

Gradle

repositories {
    maven { url 'https://repo.ryandw11.com/repository/maven-releases/' }
}
dependencies {
    implementation 'com.ryandw11:CustomStructures:1.5.8'
}

Documentation

Check out the JavaDocs here: https://ryandw11.github.io/CustomStructures/