0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 07:30:43 -05:00

10 lines
134 B
C#
Raw Normal View History

2024-12-31 13:46:44 -05:00
namespace ReCodeItLib.Enums;
2024-06-11 19:18:48 -04:00
internal enum ELogLevel
{
None = 0,
Success = 1,
Warn = 2,
Error = 3,
Full = 4,
}