mirror of
https://github.com/sp-tarkov/assembly-tool.git
synced 2025-02-12 17:10:45 -05:00
10 lines
134 B
C#
10 lines
134 B
C#
namespace ReCodeItLib.Enums;
|
|
|
|
internal enum ELogLevel
|
|
{
|
|
None = 0,
|
|
Success = 1,
|
|
Warn = 2,
|
|
Error = 3,
|
|
Full = 4,
|
|
} |