1
mirror of https://github.com/CarmJos/MineSQL.git synced 2026-06-04 16:43:03 +08:00

feat(platform): Sponge8 support (#4)

* feat(support): 恢复Sponge代码

(cherry picked from commit 58bddd86aa)

* Sponge8 support

* Sponge8 support

* Sponge8 support

Co-authored-by: carm <carm@carm.cc>
This commit is contained in:
huanmeng_qwq
2023-01-14 18:05:10 +08:00
committed by GitHub
parent 3c45eb29bf
commit 3d885a85a2
8 changed files with 260 additions and 4 deletions
@@ -2,6 +2,7 @@ package cc.carm.plugin.minesql;
import co.aikar.commands.CommandManager;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.io.File;
import java.util.logging.Logger;
@@ -12,6 +13,6 @@ public interface MineSQLPlatform {
@NotNull Logger getLogger();
@NotNull CommandManager<?, ?, ?, ?, ?, ?> getCommandManager();
@Nullable CommandManager<?, ?, ?, ?, ?, ?> getCommandManager();
}