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

18 lines
366 B
C#
Raw Normal View History

2024-08-29 17:20:01 +08:00
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();
}
}
}