Advertisement
SonOfABeach

Untitled

May 7th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. char* ConsoleLines[10];
  2. void WriteLine(char* Input)
  3. {
  4.     for (int i = 0; i < 9; i++)
  5.     {
  6.         ConsoleLines[i] = ConsoleLines[i + 1];
  7.     }
  8.     ConsoleLines[0] = Input;
  9. }
  10.  
  11. void DrawConsole()//Constant Call
  12. {
  13.     for (int i = 0; i < 10; i++)
  14.     {
  15.         DRAW_TEXT_FULL(ConsoleLines[i], 0.05, 0.7 + (0.02 * i), 0.35, 0.35, 6, false, false, false, false, 255, 255, 255, 255);
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement