Table of Contents

Interface IPluginCommands

Namespace
Whim
Assembly
Whim.dll
The commands and keybinds for a plugin.
public interface IPluginCommands

Properties

Commands

The commands for this plugin.
IEnumerable<ICommand> Commands { get; }

Property Value

IEnumerable<ICommand>

Keybinds

The keybinds for this plugin.
IEnumerable<(string commandId, IKeybind keybind)> Keybinds { get; }

Property Value

IEnumerable<(string commandId, IKeybind keybind)>

PluginName

The name of the plugin.
string PluginName { get; }

Property Value

string