feat: add ICommandHookListener interface

This commit is contained in:
2026-06-11 20:18:56 +02:00
parent 5188b44a81
commit 6d4f964e74
+10
View File
@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace CommandHook;
public interface ICommandHookListener
{
string ModId { get; }
IReadOnlyList<string> Commands { get; }
CommandRegistration Registration { get; }
}