summaryrefslogtreecommitdiff
path: root/NET/worlds/core/Debug.java
diff options
context:
space:
mode:
Diffstat (limited to 'NET/worlds/core/Debug.java')
-rw-r--r--NET/worlds/core/Debug.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/NET/worlds/core/Debug.java b/NET/worlds/core/Debug.java
new file mode 100644
index 0000000..9221c1d
--- /dev/null
+++ b/NET/worlds/core/Debug.java
@@ -0,0 +1,13 @@
+package NET.worlds.core;
+
+public class Debug {
+ public static final boolean ON = true;
+ public static final boolean TRACEON = false;
+
+ public static void LogDebug() {
+ LogDebug("");
+ }
+
+ public static synchronized void LogDebug(String string) {
+ }
+}