From 6d4f964e741065f3a196faa9a5690bef07c943f7 Mon Sep 17 00:00:00 2001 From: anth64 Date: Thu, 11 Jun 2026 20:18:56 +0200 Subject: [PATCH] feat: add ICommandHookListener interface --- CommandHook/ICommandHookListener.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CommandHook/ICommandHookListener.cs 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; } +}