8 lines
159 B
C#
8 lines
159 B
C#
namespace Questionable.Controller.DebugCommands;
|
|
|
|
internal interface IDebugCommandHandler
|
|
{
|
|
string CommandName { get; }
|
|
|
|
void Execute(string[] arguments);
|
|
}
|