2023-01-05 01:23:32 +00:00
|
|
|
|
using Playnite.SDK;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Playnite.Extension
|
|
|
|
|
{
|
|
|
|
|
public class PlayniteClient : LibraryClient
|
|
|
|
|
{
|
|
|
|
|
public override bool IsInstalled => true;
|
|
|
|
|
|
|
|
|
|
public override void Open()
|
|
|
|
|
{
|
2023-01-05 07:07:17 +00:00
|
|
|
|
|
|
|
|
|
System.Diagnostics.Process.Start("https://localhost:7087");
|
2023-01-05 01:23:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|