forked from sin365/AxibugEmuOnline
13 lines
347 B
C#
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);
|
|
}
|
|
} |