Initial Commit

Initial commit of project.
This commit is contained in:
Alex Stewart
2019-03-09 01:21:44 -08:00
parent e54e9653ed
commit 13420951b1
124 changed files with 5883 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package utils;
public enum LogFilter
{
Debug(0), Command(1), Core(2), Database(4), Response(8), Network(16); //8, 16, 32... (flags, so we can | together later)
private final int value;
private LogFilter(int value)
{
this.value = value;
}
public int getValue()
{
return value;
}
}