13 lines
329 B
Java
13 lines
329 B
Java
package com.scaritclo.mCTestPlugin;
|
|
|
|
import io.papermc.paper.plugin.bootstrap.BootstrapContext;
|
|
import io.papermc.paper.plugin.bootstrap.PluginBootstrap;
|
|
|
|
class MCTestPluginBootstrap implements PluginBootstrap {
|
|
|
|
@Override
|
|
public void bootstrap(final BootstrapContext context) {
|
|
// Plugin bootstrap logic
|
|
}
|
|
}
|