package com.tiedup.remake.commands.subcommands; import com.mojang.brigadier.builder.LiteralArgumentBuilder; import net.minecraft.commands.CommandSourceStack; /** * Bondage-related sub-commands for /tiedup. * Delegates to specialized command classes. */ public class BondageSubCommand { public static void register(LiteralArgumentBuilder root) { BindCommands.register(root); GagCommands.register(root); BlindfoldCommands.register(root); CollarCommands.register(root); AccessoryCommands.register(root); } }