mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-16 15:30:37 -05:00
15 lines
358 B
C#
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; }
|
|
}
|
|
} |