qstbak/Questionable/Questionable.Controller.DebugCommands/IDebugCommandHandler.cs
2025-11-30 10:36:46 +10:00

8 lines
159 B
C#

namespace Questionable.Controller.DebugCommands;
internal interface IDebugCommandHandler
{
string CommandName { get; }
void Execute(string[] arguments);
}