rltime/src/main/java/ca/thetechrobo/rltime/RLTime.java

21 lines
453 B
Java

package ca.thetechrobo.rltime;
import org.bukkit.plugin.java.JavaPlugin;
public class RLTime extends JavaPlugin {
@Override
public void onEnable() {
GetTime gettime = new GetTime(this);
this.getCommand("ctime").setExecutor(gettime);
Set24HourTime set24 = new Set24HourTime(this);
this.getCommand("set24HourTime").setExecutor(set24);
this.getCommand("set24HourTime").setTabCompleter(set24);
}
@Override
public void onDisable() {
}
}