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