27 lines
337 B
C#
27 lines
337 B
C#
using System;
|
|
using BizHawk.Emulation.Common;
|
|
|
|
namespace BizHawk.Emulation.Cores.Consoles.Vectrex
|
|
{
|
|
public partial class VectrexHawk : ISaveRam
|
|
{
|
|
public byte[] CloneSaveRam()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void StoreSaveRam(byte[] data)
|
|
{
|
|
|
|
}
|
|
|
|
public bool SaveRamModified
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|