mirror of
https://github.com/SimplexDevelopment/ToolAssist.git
synced 2025-07-04 03:16:41 +00:00
Initial commit
This commit is contained in:
26
src/main/java/io/github/simplex/toolassist/ToolAssist.java
Normal file
26
src/main/java/io/github/simplex/toolassist/ToolAssist.java
Normal file
@ -0,0 +1,26 @@
|
||||
package io.github.simplex.toolassist;
|
||||
|
||||
import io.github.simplex.toolassist.data.Config;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public final class ToolAssist extends JavaPlugin {
|
||||
|
||||
private Config config;
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
// Plugin startup logic
|
||||
this.config = new Config(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
// Plugin shutdown logic
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NotNull Config getConfig() {
|
||||
return config;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user