diff --git a/CommandHook/ICommandHookListener.cs b/CommandHook/ICommandHookListener.cs new file mode 100644 index 0000000..a4bdeee --- /dev/null +++ b/CommandHook/ICommandHookListener.cs @@ -0,0 +1,10 @@ +using System.Collections.Generic; + +namespace CommandHook; + +public interface ICommandHookListener +{ + string ModId { get; } + IReadOnlyList Commands { get; } + CommandRegistration Registration { get; } +}