// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.modules.singleplayer.commands;

import com.hypixel.hytale.server.core.command.system.AbstractCommand;
import javax.annotation.Nonnull;
import com.hypixel.hytale.server.core.modules.singleplayer.SingleplayerModule;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;

public class PlayCommand extends AbstractCommandCollection
{
    public PlayCommand(@Nonnull final SingleplayerModule singleplayerModule) {
        super("play", "server.commands.play.desc");
        this.addSubCommand(new PlayLanCommand(singleplayerModule));
        this.addSubCommand(new PlayFriendCommand(singleplayerModule));
        this.addSubCommand(new PlayOnlineCommand(singleplayerModule));
    }
}
