-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphics.h
More file actions
28 lines (25 loc) · 697 Bytes
/
Graphics.h
File metadata and controls
28 lines (25 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once
#include <iostream>
#include <conio.h>
#include <string>
#include <Windows.h>
#include <MMSystem.h>
#include <ctime>
#include <fstream>
#include <string.h>
using namespace std;
void gotoxy(int x, int y);
int wherex();
int wherey();
void TextColor(WORD color);
void setBGColor(WORD);
void resizeConsole(int width, int height);
void clrscr();
void AnConTro();
void HienConTro();
void TextBT(int xGoc, int yGoc, int xDich, int yDich, char *InPut, int Delay, int Color, int Space);
void ColorText(int, int);
void ColorText(char, int);
void ColorText(string, int);
void BGColorText(char *text, int colorText, int colorBG);
void BGColorText(const char *text, int colorText, int colorBG);