mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
14 lines
No EOL
362 B
C#
14 lines
No EOL
362 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.IL2CPU
|
|
{
|
|
public enum LogSeverityEnum : byte
|
|
{
|
|
Warning = 0, Error = 1, Informational = 2, Performance = 3
|
|
}
|
|
public enum TraceAssemblies { All, Cosmos, User };
|
|
public enum DebugMode { None, IL, Source, MLUsingGDB }
|
|
} |