10 lines
220 B
C#
10 lines
220 B
C#
|
|
using System;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace LANCommander.SDK.PowerShell.Rpc;
|
||
|
|
|
||
|
|
public interface IScriptDebuggerHub
|
||
|
|
{
|
||
|
|
Task DebugPackageScript(Guid gameId);
|
||
|
|
Task SendInput(Guid sessionId, string input);
|
||
|
|
}
|