diff options
Diffstat (limited to 'Ryujinx.Graphics.Device/IDeviceState.cs')
-rw-r--r-- | Ryujinx.Graphics.Device/IDeviceState.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Device/IDeviceState.cs b/Ryujinx.Graphics.Device/IDeviceState.cs new file mode 100644 index 00000000..077d69f2 --- /dev/null +++ b/Ryujinx.Graphics.Device/IDeviceState.cs @@ -0,0 +1,8 @@ +namespace Ryujinx.Graphics.Device +{ + public interface IDeviceState + { + int Read(int offset); + void Write(int offset, int data); + } +} |