Files

12 lines
167 B
C#

namespace AutoRefillFires
{
public enum ModLogLevel
{
None = 0,
Error = 1,
Warning = 2,
Info = 3,
Debug = 4
}
}