forked from NLPQuy/Tik-Tak-Toe-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
37 lines (31 loc) · 663 Bytes
/
main.cpp
File metadata and controls
37 lines (31 loc) · 663 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
29
30
31
32
33
34
#include "PlayervsPlayer.h"
#include"Loadingbar.h"
#include"PLAYERVSBOT.h"
#include "Textfile.h"
#include "MenuGame.h"
#include "Charactars.h"
using namespace std;
void Quay() {
int k = 15;
for (int i = 0; i < k; i++) {
Sleep(1000);
cout << i;
}
system("cls");
}
int main() {
//Quay();
#define faster() ios_base :: sync_with_stdio(0);
cin.tie(NULL); cout.tie(NULL);
system("color F0");
SetConsoleCP(437);
SetConsoleOutputCP(437);
setConsoleWindow(1920, 1080);
FixConsoleWindow();
int n = 100;
InFIle3("CAROBAR.txt", 5, 50,70,Red,Blue);
NewLoadingBar();
ScreenStartGame(n);
return 0;
}