Ejemplo n.º 1
0
 public static void error(Tag tag, object s)
 {
     if (DevTag.getInstance().isAllowed(tag))
     {
         Debug.LogError(tag + " : " + s);
     }
 }
Ejemplo n.º 2
0
 public static DevTag getInstance()
 {
     if (instance == null)
     {
         instance = new DevTag();
     }
     return(instance);
 }