bloxstrap/Bloxstrap/Enums/GenericTriState.cs
pizzaboxer 8b74470f6c
Convert AssemblyLoadStatus to a generic enum
i might need this for other things
2023-10-27 22:24:59 +01:00

10 lines
129 B
C#

namespace Bloxstrap.Enums
{
public enum GenericTriState
{
Successful,
Failed,
Unknown
}
}