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

package com.hypixel.hytale.builtin.mounts.commands;

import com.hypixel.hytale.server.core.command.system.AbstractCommand;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;

public class MountCommand extends AbstractCommandCollection
{
    public MountCommand() {
        super("mount", "server.commands.mount");
        this.addSubCommand(new DismountCommand());
        this.addSubCommand(new MountCheckCommand());
    }
}
