Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- char* ConsoleLines[10];
- void WriteLine(char* Input)
- {
- for (int i = 0; i < 9; i++)
- {
- ConsoleLines[i] = ConsoleLines[i + 1];
- }
- ConsoleLines[0] = Input;
- }
- void DrawConsole()//Constant Call
- {
- for (int i = 0; i < 10; i++)
- {
- 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);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement