LANCommander/LANCommander.Playnite.Extension/PlayniteClient.cs
2023-01-04 19:23:32 -06:00

19 lines
402 B
C#

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()
{
throw new NotImplementedException();
}
}
}