mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-29 13:04:39 -05:00
8 lines
187 B
C#
8 lines
187 B
C#
namespace NHSE.Injection;
|
|
|
|
public interface IRAMReadWriter
|
|
{
|
|
bool Connected { get; }
|
|
byte[] ReadBytes(uint offset, int length);
|
|
void WriteBytes(byte[] data, uint offset);
|
|
} |