NHSE/NHSE.Injection/Injector/InjectionResult.cs
Kurt 8edf0a6ec4 Add trycatch for sysbot read/write, turn off auto-r/w on fail
Closes #156

turning off auto-r/w won't happen if the auto-r/w itself fails. still pops open a message saying error until you turn it off in the other window.
2020-05-03 13:51:26 -07:00

12 lines
175 B
C#

namespace NHSE.Injection
{
public enum InjectionResult
{
Skipped,
Success,
FailValidate,
FailConnectionError,
Same,
}
}