13
0
geforkt von Mirrors/Paper

Update test plugin

Dieser Commit ist enthalten in:
Nassim Jahnke 2023-06-08 15:42:13 +02:00
Ursprung 00b28e1c3b
Commit ddd74452e4

Datei anzeigen

@ -1,13 +1,13 @@
package io.papermc.testplugin;
import io.papermc.paper.plugin.bootstrap.BootstrapContext;
import io.papermc.paper.plugin.bootstrap.PluginBootstrap;
import io.papermc.paper.plugin.bootstrap.PluginProviderContext;
import org.jetbrains.annotations.NotNull;
public class TestPluginBootstrap implements PluginBootstrap {
@Override
public void bootstrap(@NotNull PluginProviderContext context) {
public void bootstrap(@NotNull BootstrapContext context) {
}
}