namespace VpSharp.Commands; /// /// Extension methods for . /// public static class VirtualParadiseClientExtensions { /// /// Registers to be used with the current client. /// /// The . /// The configuration required for the extensions. /// The commands extension instance. public static CommandsExtension UseCommands(this VirtualParadiseClient client, CommandsExtensionConfiguration configuration) { return client.AddExtension(configuration); } }