Ejemplo n.º 1
0
 public ASCIIAnimation(int height, int fps, StreamReader sr)
 {
     Height      = height;
     timer       = new WinMMTimer(1000 / fps);
     timer.Tick += frame;
     tr          = sr;
     this.sr     = sr;
     System.Console.CursorVisible = false;
 }