BizHawk/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawk.ISaveRam.cs

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;
}
}
}
}