mirror of
https://github.com/rommapp/playnite-plugin.git
synced 2026-01-09 06:33:15 +08:00
18 lines
321 B
C#
18 lines
321 B
C#
using Playnite.SDK;
|
|
using System;
|
|
|
|
namespace RomM
|
|
{
|
|
public class RomMClient : LibraryClient
|
|
{
|
|
public override bool IsInstalled => false;
|
|
|
|
public override void Open()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override string Icon => RomM.Icon;
|
|
}
|
|
}
|