/ src / Ryujinx.Graphics.Device / IDeviceState.cs
IDeviceState.cs
1  namespace Ryujinx.Graphics.Device
2  {
3      public interface IDeviceState
4      {
5          int Read(int offset);
6          void Write(int offset, int data);
7      }
8  }