AxibugEmuOnline/AxibugEmuOnline.Client/Assets/MyNes.Core/Support/IExternalSuppoter.cs
2024-07-18 15:14:45 +08:00

13 lines
347 B
C#

using System.IO;
namespace MyNes.Core
{
public interface IExternalSupporter
{
string GetWorkingFolderPath();
public Stream OpenDatabaseFile();
public Stream OpenPaletteFile();
public Stream OpenRomFile(string path);
public bool IsKeyPressing(EnumJoyIndex index,EnumKeyKind key);
}
}