NHSE/NHSE.Injection/Injector/IDataInjector.cs
Kurt 1ff26a3be7 Update validation & add bypass
Require first uint to match, can bypass others
2020-04-04 21:35:03 -07:00

15 lines
358 B
C#

namespace NHSE.Injection
{
public interface IDataInjector
{
bool ReadValidate(out byte[] data);
InjectionResult Read();
InjectionResult Write();
bool Validate();
bool Validate(byte[] data);
uint WriteOffset { set; }
bool Connected { get; }
bool ValidateEnabled { get; set; }
}
}