mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2024-11-14 13:13:32 +00:00
17 lines
354 B
Java
17 lines
354 B
Java
package me.totalfreedom.fossil;
|
|
|
|
import me.totalfreedom.base.CommonsBase;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
public class Fossil extends JavaPlugin
|
|
{
|
|
@Override
|
|
public void onEnable()
|
|
{
|
|
CommonsBase.getInstance()
|
|
.getRegistrations()
|
|
.getModuleRegistry()
|
|
.addModule(this);
|
|
}
|
|
}
|