mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-10 06:15:41 +00:00
19 lines
754 B
C#
19 lines
754 B
C#
namespace VpSharp.Commands;
|
|
|
|
/// <summary>
|
|
/// Extension methods for <see cref="VirtualParadiseClient" />.
|
|
/// </summary>
|
|
public static class VirtualParadiseClientExtensions
|
|
{
|
|
/// <summary>
|
|
/// Registers <see cref="CommandsExtension" /> to be used with the current client.
|
|
/// </summary>
|
|
/// <param name="client">The <see cref="VirtualParadiseClient" />.</param>
|
|
/// <param name="configuration">The configuration required for the extensions.</param>
|
|
/// <returns>The commands extension instance.</returns>
|
|
public static CommandsExtension UseCommands(this VirtualParadiseClient client, CommandsExtensionConfiguration configuration)
|
|
{
|
|
return client.AddExtension<CommandsExtension>(configuration);
|
|
}
|
|
}
|