1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-08 05:10:55 +02:00

Sponge support

This commit is contained in:
Luck
2016-08-05 12:58:27 +02:00
parent 56e11b8b85
commit 03450c3339
37 changed files with 908 additions and 126 deletions

View File

@@ -5,11 +5,11 @@
<parent>
<artifactId>luckperms</artifactId>
<groupId>me.lucko.luckperms</groupId>
<version>1.4</version>
<version>1.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<version>1.4</version>
<version>1.5</version>
<artifactId>luckperms-api</artifactId>
<build>
<plugins>

View File

@@ -0,0 +1,9 @@
package me.lucko.luckperms.api;
public interface Logger {
void info(String s);
void warn(String s);
void severe(String s);
}

View File

@@ -9,6 +9,7 @@ public interface LuckPermsApi {
String getVersion();
Datastore getDatastore();
Logger getLogger();
User getUser(UUID uuid);
User getUser(String name);