feat: add CommandRegistration struct
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
namespace CommandHook;
|
||||||
|
|
||||||
|
public struct CommandRegistration
|
||||||
|
{
|
||||||
|
public readonly string CommandFilter;
|
||||||
|
public readonly CommandHookDelegate? Before;
|
||||||
|
public readonly CommandHookDelegate? After;
|
||||||
|
|
||||||
|
public CommandRegistration(
|
||||||
|
string commandFilter,
|
||||||
|
CommandHookDelegate? before,
|
||||||
|
CommandHookDelegate? after
|
||||||
|
)
|
||||||
|
{
|
||||||
|
CommandFilter = commandFilter;
|
||||||
|
Before = before;
|
||||||
|
After = after;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user