mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-16 21:56:00 -05:00
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.
12 lines
175 B
C#
12 lines
175 B
C#
namespace NHSE.Injection
|
|
{
|
|
public enum InjectionResult
|
|
{
|
|
Skipped,
|
|
Success,
|
|
FailValidate,
|
|
FailConnectionError,
|
|
Same,
|
|
}
|
|
}
|