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

27 lines
337 B
C#
Raw Normal View History

2019-03-30 21:09:04 +00:00
using System;
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Consoles.Vectrex
{
public partial class VectrexHawk : ISaveRam
{
public byte[] CloneSaveRam()
{
2019-07-10 19:42:01 +00:00
return null;
2019-03-30 21:09:04 +00:00
}
public void StoreSaveRam(byte[] data)
{
2019-07-10 19:42:01 +00:00
2019-03-30 21:09:04 +00:00
}
public bool SaveRamModified
{
get
{
2019-07-10 19:42:01 +00:00
return false;
2019-03-30 21:09:04 +00:00
}
}
}
}