mirror of
https://github.com/SimplexDevelopment/Uncraftables.git
synced 2025-07-03 09:26:42 +00:00
Initial commit
This commit is contained in:
27
src/main/java/dev/coomware/Uncraftables.java
Normal file
27
src/main/java/dev/coomware/Uncraftables.java
Normal file
@ -0,0 +1,27 @@
|
||||
package dev.coomware;
|
||||
|
||||
import org.bukkit.Server;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
public class Uncraftables extends JavaPlugin {
|
||||
public static Uncraftables plugin;
|
||||
public Server server;
|
||||
public CraftingUtils util;
|
||||
|
||||
@Override
|
||||
public void onLoad() {
|
||||
plugin = this;
|
||||
server = getServer();
|
||||
util = new CraftingUtils(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
new Craftable(this).craftables();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user