2013-08-27 17:14:08 +02:00
|
|
|
package nautilus.game.arcade.command;
|
|
|
|
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
import nautilus.game.arcade.ArcadeManager;
|
|
|
|
import mineplex.core.command.MultiCommandBase;
|
|
|
|
import mineplex.core.common.Rank;
|
|
|
|
|
|
|
|
public class GameCommand extends MultiCommandBase<ArcadeManager>
|
|
|
|
{
|
|
|
|
public GameCommand(ArcadeManager plugin)
|
|
|
|
{
|
2014-08-22 09:05:14 +02:00
|
|
|
super(plugin, Rank.ADMIN, new Rank[] {Rank.YOUTUBE, Rank.MAPDEV}, "game");
|
2013-08-27 17:14:08 +02:00
|
|
|
|
|
|
|
AddCommand(new StartCommand(Plugin));
|
|
|
|
AddCommand(new StopCommand(Plugin));
|
2014-05-02 06:35:41 +02:00
|
|
|
AddCommand(new SetCommand(Plugin));
|
2013-08-27 17:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void Help(Player caller, String[] args)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|