summaryrefslogtreecommitdiff
path: root/NET/worlds/core/Debug.java
blob: 9221c1d0c3adb05053a7e5b689c0688e3a992b49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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) {
   }
}