AxibugEmuOnline/AxibugEmuOnline.Client/Assets/MyNes.Core/Support/IExternalSuppoter.cs

13 lines
347 B
C#
Raw Normal View History

2024-07-18 15:14:45 +08:00
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);
}
}