mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-13 23:33:33 +00:00
21 lines
274 B
Java
21 lines
274 B
Java
|
package me.totalfreedom.plex;
|
||
|
|
||
|
import org.bukkit.plugin.java.JavaPlugin;
|
||
|
|
||
|
public class Plex extends JavaPlugin
|
||
|
{
|
||
|
@Override
|
||
|
public void onLoad()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onEnable()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onDisable()
|
||
|
{
|
||
|
}
|
||
|
}
|