mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
15 lines
431 B
C#
15 lines
431 B
C#
namespace Dalamud.Game.Command {
|
|
public sealed class CommandInfo {
|
|
public delegate void HandlerDelegate(string command, string arguments);
|
|
|
|
public HandlerDelegate Handler { get; }
|
|
|
|
public string HelpMessage { get; set; } = string.Empty;
|
|
|
|
public bool ShowInHelp { get; set; } = true;
|
|
|
|
public CommandInfo(HandlerDelegate handler) {
|
|
Handler = handler;
|
|
}
|
|
}
|
|
}
|