mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-23 12:30:53 -05:00
9 lines
159 B
C#
9 lines
159 B
C#
namespace Ryujinx.Graphics.Device
|
|
{
|
|
public interface IDeviceState
|
|
{
|
|
int Read(int offset);
|
|
void Write(int offset, int data);
|
|
}
|
|
}
|