-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpandora.cpp
35 lines (27 loc) · 1.18 KB
/
pandora.cpp
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
35
#include <windows.h>
#include <psapi.h>
#include <vector>
#include <string>
#include <dbghelp.h>
#include <iostream>
#include <fstream>
#include <cstdio>
#include <cstring>
#include "headers/core/saveAllProc.h"
#include "headers/core/checkApps.h"
int main() {
std::cout << std::endl;
std::cout << " .########.....###....##....##.########...#######..########.....###... " << std::endl;
std::cout << " .##.....##...##.##...###...##.##.....##.##.....##.##.....##...##.##.. " << std::endl;
std::cout << " .##.....##..##...##..####..##.##.....##.##.....##.##.....##..##...##. " << std::endl;
std::cout << " .########..##.....##.##.##.##.##.....##.##.....##.########..##.....## " << std::endl;
std::cout << " .##........#########.##..####.##.....##.##.....##.##...##...######### " << std::endl;
std::cout << " .##........##.....##.##...###.##.....##.##.....##.##....##..##.....## " << std::endl;
std::cout << " .##........##.....##.##....##.########...#######..##.....##.##.....## " << std::endl;
std::cout << std::endl;
checkApps();
cout << "Pandora finished. Press Enter to exit...";
cin.ignore();
cin.get();
return 0;
}