12 lines
263 B
Java
12 lines
263 B
Java
package com.pahimar.ee3.command;
|
|
|
|
import cpw.mods.fml.common.event.FMLServerStartingEvent;
|
|
|
|
public class CommandHandler {
|
|
|
|
public static void initCommands(FMLServerStartingEvent event) {
|
|
|
|
event.registerServerCommand(new CommandEE());
|
|
}
|
|
|
|
}
|