feat: add ICommandHookListener interface
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CommandHook;
|
||||
|
||||
public interface ICommandHookListener
|
||||
{
|
||||
string ModId { get; }
|
||||
IReadOnlyList<string> Commands { get; }
|
||||
CommandRegistration Registration { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user