static void A8ConsoleEvent(A8Console.Event e, string txt)
 {
     if (instance != null)
     {
         instance.logPos = new Vector2(0, float.PositiveInfinity);
     }
 }
Exemple #2
0
 void A8ConsoleEvent(A8Console.Event e, string txt)
 {
     if (e != A8Console.Event.CLEAR)
     {
         lock (this)
         {
             sendCache.Append(txt + ((e == A8Console.Event.WRITELINE) ? "\n" : ""));
         }
     }
 }