13 lines
225 B
C#
13 lines
225 B
C#
namespace Luski;
|
|
|
|
[Flags]
|
|
public enum ConsoleLog : int
|
|
{
|
|
None = 0,
|
|
BigErrosForOpenGL = 1,
|
|
MediumErrosForOpenGL = 2,
|
|
LowErrosForOpenGL = 4,
|
|
InfoForOpenGL = 8,
|
|
DrawFrames = 16,
|
|
ShowMissingChar = 32
|
|
} |