mirror of
https://github.com/rommapp/playnite-plugin.git
synced 2026-01-09 06:33:15 +08:00
12 lines
211 B
C#
12 lines
211 B
C#
using Playnite.SDK;
|
|
|
|
namespace RomM
|
|
{
|
|
internal interface IRomM
|
|
{
|
|
ILogger Logger { get; }
|
|
IPlayniteAPI Playnite { get; }
|
|
Settings.SettingsViewModel Settings { get; }
|
|
string GetPluginUserDataPath();
|
|
}
|
|
} |