Files
mRemoteNG/mRemoteV1/Tools/PuttyProcessController.cs
2016-11-11 17:24:02 -05:00

14 lines
326 B
C#

namespace mRemoteNG.Tools
{
public class PuttyProcessController : ProcessController
{
public bool Start(CommandLineArguments arguments = null)
{
var filename = Settings.Default.UseCustomPuttyPath ? Settings.Default.CustomPuttyPath : App.Info.GeneralAppInfo.PuttyPath;
return Start(filename, arguments);
}
}
}