0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 06:10:46 -05:00

10 lines
131 B
C#
Raw Normal View History

2024-06-14 19:06:21 -04:00
namespace ReCodeIt.Enums;
2024-06-11 19:18:48 -04:00
internal enum ELogLevel
{
None = 0,
Success = 1,
Warn = 2,
Error = 3,
Full = 4,
}