NHSE/NHSE.Injection/Injector/IRAMReadWriter.cs
2026-01-13 16:02:58 -06:00

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);
}