wip
This commit is contained in:
@@ -11,8 +11,9 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
compileOnly("net.kyori:adventure-api:4.8.1")
|
||||
compileOnly("com.google.guava:guava:30.1.1-jre")
|
||||
|
||||
implementation("us.ajg0702:ajQueue:")
|
||||
implementation(project(":api"))
|
||||
}
|
||||
|
||||
publishing {
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
package us.ajg0702.queue.common;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import us.ajg0702.queue.api.QueueManager;
|
||||
import us.ajg0702.queue.api.players.AdaptedPlayer;
|
||||
import us.ajg0702.queue.api.queues.QueueServer;
|
||||
|
||||
public class QueueManagerImpl implements QueueManager {
|
||||
@Override
|
||||
public boolean addToQueue(AdaptedPlayer player, QueueServer server) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean addToQueue(AdaptedPlayer player, String serverName) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ImmutableList<QueueServer> getServers() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ImmutableList<String> getServerNames() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user