mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-18 00:47:42 +01:00
[ci skip] add test plugin module
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package org.purpurmc.testplugin;
|
||||
|
||||
import org.bukkit.event.Listener;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
public class TestPlugin extends JavaPlugin implements Listener {
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
this.getServer().getPluginManager().registerEvents(this, this);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.purpurmc.testplugin;
|
||||
|
||||
public class TestPluginBootstrap {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.purpurmc.testplugin;
|
||||
|
||||
public class TestPluginLoader {
|
||||
}
|
||||
Reference in New Issue
Block a user