mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-09-08 05:10:55 +02:00
Sponge support
This commit is contained in:
@@ -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>
|
||||
|
9
api/src/main/java/me/lucko/luckperms/api/Logger.java
Normal file
9
api/src/main/java/me/lucko/luckperms/api/Logger.java
Normal 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);
|
||||
|
||||
}
|
@@ -9,6 +9,7 @@ public interface LuckPermsApi {
|
||||
String getVersion();
|
||||
|
||||
Datastore getDatastore();
|
||||
Logger getLogger();
|
||||
|
||||
User getUser(UUID uuid);
|
||||
User getUser(String name);
|
||||
|
Reference in New Issue
Block a user