예제 #1
0
 public static void Write(this MsgPainter m, string tip)
 {
     var txt = m.GetText(); txt.write(tip, txt.ApproximateLengthUnsafe());
 }
예제 #2
0
 public static void Write(this MsgPainter m, string tip, int width)
 {
     m.GetText().write(tip, width);
 }
예제 #3
0
 public static void Write(this MsgPainter m)
 {
     var txt = m.GetText(); txt.write(m.GetDescription(), txt.ApproximateLengthUnsafe());
 }
예제 #4
0
 public static void Write(this MsgPainter m, int width)
 {
     m.GetText().write(m.GetDescription(), width);
 }
예제 #5
0
 public static void Write(this MsgPainter m, int width)
 {
     m.GetText().write(width);
 }