AxibugEmuOnline/AxibugEmuOnline.Client/Assets/VirtualNes.Core/State/EXCTRSTAT.cs

18 lines
366 B
C#

namespace VirtualNes.Core
{
public struct EXCTRSTAT : IStateBufferObject
{
public uint data;
public readonly uint GetSize()
{
return sizeof(uint);
}
public readonly void SaveState(StateBuffer buffer)
{
throw new System.NotImplementedException();
}
}
}