Skip to content

Commit d897764

Browse files
committed
feat: add plugin main class
1 parent 9a680ef commit d897764

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package br.minilambda;
2+
3+
import org.bukkit.plugin.java.JavaPlugin;
4+
5+
import br.minilambda.event.DirtToMudUsingWater;
6+
7+
public class FastMud extends JavaPlugin {
8+
@Override
9+
public void onEnable(){
10+
this.getServer().getPluginManager().registerEvents(new DirtToMudUsingWater(), this);
11+
}
12+
}

0 commit comments

Comments
 (0)