API

Not found

https://jitpack.io/#UlrichBR/UClans-API

Current Version: 8.4.0

Maven:

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>
	<dependency>
	    <groupId>com.github.UlrichBR</groupId>
	    <artifactId>UClans-API</artifactId>
	    <version>VERSION</version>
	</dependency>

Gradle:

    allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }
    dependencies {
            implementation 'com.github.UlrichBR:UClans-API:Tag'
    }

Initialization and instantiation:

if (Bukkit.getPluginManager().isPluginEnabled("UltimateClans")) {
	UClans clansAPI = (UClans) Bukkit.getPluginManager().getPlugin("UltimateClans");
}

Methods:

ClanAPIManager clanAPI = clansAPI.getClanAPI();
PlayerAPIManager playerAPI = clansAPI.getPlayerAPI();

Last updated